// --------------------------------------------------------------------------- // Shared SVG icon components // --------------------------------------------------------------------------- interface IconProps { className?: string } export function SpinnerIcon({ className = 'w-4 h-4' }: IconProps) { return ( ) } export function CheckIcon({ className = 'w-4 h-4' }: IconProps) { return ( ) } export function XIcon({ className = 'w-4 h-4' }: IconProps) { return ( ) } export function ChevronIcon({ className = 'w-4 h-4' }: IconProps) { return ( ) } export function WarningIcon({ className = 'w-5 h-5' }: IconProps) { return ( ) } export function FolderIcon({ className = 'w-6 h-6' }: IconProps) { return ( ) }