import type { SVGProps } from 'react'; interface CustomIconProps extends SVGProps { size?: number; fill?: string; stroke?: string; strokeWidth?: number; viewBox?: string; } const loadingCircle = ({ size = 18, fill = 'none', stroke = 'none', strokeWidth = 2, viewBox = '0 0 18 18', ...props }:CustomIconProps) => ( ); export default loadingCircle;