import { FC } from 'react';
export interface Props {
    name: string;
    color?: string;
    size?: number;
    style?: any;
}
declare const Icon: FC<Props>;
export default Icon;
