import ChevronDoubleRight from "#/icons/chevron-double-right.svg?react"; import { cn } from "#/utils/utils"; interface ContinueButtonProps { onClick: () => void; } export function ContinueButton({ onClick }: ContinueButtonProps) { return ( ); }