interface SpoolIconProps { color: string; isEmpty: boolean; size?: number; } export function SpoolIcon({ color, isEmpty, size = 32 }: SpoolIconProps) { if (isEmpty) { return (
); } return ( {/* Outer ring with white stroke for visibility */} {/* Inner shadow/depth */} ); }