import { FC } from "react";
import { EColor } from "../../enum/index";
import "./index.scss";
interface IProps {
color?: EColor;
path?: Array<string> | string;
className?: string;
onClick?: () => void;
}
declare const Icon: FC<IProps>;
export default Icon;