zzz / frontend /src /components /shared /buttons /continue-button.tsx
ar08's picture
Upload 1040 files
246d201 verified
raw
history blame contribute delete
579 Bytes
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>
);
}