import * as icons from './data';
export type IconName = keyof typeof icons | string;
export type IconData = {
    name: IconName;
    prefix: string;
    height: string;
    width: string;
    svgPathData: string | Array<string>;
    sizes?: {
        small: Omit<IconData, 'sizes'>;
    };
};
