import { cx } from 'class-variance-authority'; import type { SVGProps } from 'react'; export const Bars = ( props: SVGProps< SVGSVGElement > ) => { return ( ); }; export const CheckCircleSolid = ( props: SVGProps< SVGSVGElement > ) => { return ( ); }; const DIRECTION = { up: 'rotate-180', down: 'rotate-0', left: 'rotate-90', right: '-rotate-90', } as const; type Direction = keyof typeof DIRECTION; type ChevronProps = SVGProps< SVGSVGElement > & { direction?: Direction; }; export const Chevron = ( { direction = 'down', className, ...props }: ChevronProps ) => { return ( ); }; export const Eye = ( props: SVGProps< SVGSVGElement > ) => { return ( ); }; export const EyeSlash = ( props: SVGProps< SVGSVGElement > ) => { return ( ); }; export const Info = ( props: SVGProps< SVGSVGElement > ) => { return ( ); }; export const XIcon = ( props: SVGProps< SVGSVGElement > ) => { return ( ); }; export const XCircle = ( props: SVGProps< SVGSVGElement > ) => { return ( ); }; export const XCircleSolid = ( props: SVGProps< SVGSVGElement > ) => { return ( ); }; export const Check = ( props: SVGProps< SVGSVGElement > ) => { return ( ); }; export const ExclamationTriangle = ( props: SVGProps< SVGSVGElement > ) => { return ( ); }; export const Clipboard = ( props: SVGProps< SVGSVGElement > ) => { return ( ); }; export const ClipboardCheck = ( props: SVGProps< SVGSVGElement > ) => { return ( ); }; export const UploadImage = ( props: SVGProps< SVGSVGElement > ) => { return ( ); };