import React from "react";
interface IconProps {
    name?: string;
}
declare const Icon: React.FC<IconProps>;
export default Icon;
