declare const icons: {
  [key: string]: {
    viewBox: string;
    content: string;
  };
};

export type IconName = keyof typeof icons;
export default icons;