export type IconWeight = "thin" | "light" | "regular" | "bold" | "fill" | "duotone";
export type IconAttrs = {
    size?: string | number;
    weight?: IconWeight;
    color?: string;
    mirrored?: boolean;
};
