zzz / frontend /src /components /shared /buttons /editor-action-button.tsx
ar08's picture
Upload 1040 files
246d201 verified
raw
history blame contribute delete
661 Bytes
import { cn } from "#/utils/utils";
interface EditorActionButtonProps {
onClick: () => void;
disabled: boolean;
className: React.HTMLAttributes<HTMLButtonElement>["className"];
}
export function EditorActionButton({
onClick,
disabled,
className,
children,
}: React.PropsWithChildren<EditorActionButtonProps>) {
return (
<button
type="button"
onClick={onClick}
disabled={disabled}
className={cn(
"text-sm py-0.5 rounded w-20",
"hover:bg-neutral-700 disabled:opacity-50 disabled:cursor-not-allowed",
className,
)}
>
{children}
</button>
);
}