interface SpoolIconProps { color: string; isEmpty: boolean; size?: number; } export function SpoolIcon({ color, isEmpty, size = 32 }: SpoolIconProps) { if (isEmpty) { return (