File size: 661 Bytes
246d201 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
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>
);
}
|