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