File size: 515 Bytes
246d201 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import { cn } from "#/utils/utils";
import CloseIcon from "#/icons/close.svg?react";
interface RemoveButtonProps {
onClick: () => void;
}
export function RemoveButton({ onClick }: RemoveButtonProps) {
return (
<button
type="button"
onClick={onClick}
className={cn(
"bg-neutral-400 rounded-full w-3 h-3 flex items-center justify-center",
"absolute right-[3px] top-[3px]",
)}
>
<CloseIcon width={10} height={10} />
</button>
);
}
|