interface CustomForkIconProps { className?: string; fill?: string; width?: number; height?: number; } export const CustomForkIcon = ({ className, fill = "#888888", width = 24, height = 24, ...props }: CustomForkIconProps) => ( )