export interface iconType {
    inline?: boolean;
    width?: string | number;
    height?: string | number;
    horizontalFlip?: boolean;
    verticalFlip?: boolean;
    flip?: string;
    rotate?: number | string;
    color?: string;
    horizontalAlign?: boolean;
    verticalAlign?: boolean;
    align?: string;
    onLoad?: Function;
    includes?: Function;
    fill?: string;
    style?: object;
}
