import { Ref } from 'react';

interface IconProps {
    title?: string;
    fill?: string;
    stroke?: string;
    ref?: Ref<SVGSVGElement>;
}

export type { IconProps as I };
