export interface SVGIconDef {
  name: string;
  theme: 'outlined' | 'filled' | 'multi-color' | 'illustration';
  attrs: {
    viewBox?: string;
  },
  children?: string;
}
