// Search new icons at https://reactsvgicons.com/ interface IconSVGProps { viewbox: string size?: string className?: string props?: React.SVGProps children: React.ReactNode } export interface IconProps { size?: string className?: string } function IconSVG({ viewbox, size = '1.5rem', className, props, children }: IconSVGProps) { return ( {children} ); } export function EducationIcon(props: IconProps) { return ( ); } export function InDoorIcon(props: IconProps) { return ( ); } export function CheckboxCheckedIcon() { return ( ); } export function CheckboxNullIcon() { return ( ); }