export interface IAwesomeIconProps {
    name: string;
    mode?: 'css' | 'svg';
    size?: number | string;
    color?: string;
}
