UNPKG

@kbfront/kb-ui

Version:

KB React UI Library

12 lines (11 loc) 273 B
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;