import { SVGAttributes } from 'react';
export interface IconProps extends SVGAttributes<SVGElement> {
    children?: never;
    color?: string;
    title?: string;
}
