UNPKG

@cocoy/kit-components

Version:

一些前端组件

8 lines (7 loc) 205 B
import type { SVGProps } from 'react'; export type SvgIconProps = { iconClass: string; className?: string; } & SVGProps<SVGSVGElement>; declare const SvgIcon: FC<SvgIconProps>; export { SvgIcon };