File size: 579 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 |
import ChevronDoubleRight from "#/icons/chevron-double-right.svg?react";
import { cn } from "#/utils/utils";
interface ContinueButtonProps {
onClick: () => void;
}
export function ContinueButton({ onClick }: ContinueButtonProps) {
return (
<button
type="button"
onClick={onClick}
className={cn(
"button-base px-2 py-1",
"text-[11px] leading-4 tracking-[0.01em] font-[500]",
"flex items-center gap-2",
)}
>
<ChevronDoubleRight width={12} height={12} />
Continue
</button>
);
}
|