// 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 ( ); }