interface IconProps { size?: number; className?: string; color?: string; } export const GeoJsonIcon = ({ size = 16, className, color = "currentColor", }: IconProps) => ( ); export const ShpIcon = ({ size = 16, className, color = "currentColor", }: IconProps) => ( ); export const KmlIcon = ({ size = 16, className, color = "currentColor", }: IconProps) => ( ); export const MapIcon = ({ size = 16, className, color = "currentColor", }: IconProps) => ( ); export const ChoroplethIcon = ({ size = 32, className, color = "currentColor", }: IconProps) => ( );