UNPKG

zent

Version:

一套前端设计语言和基于React的实现

7 lines (6 loc) 233 B
/// <reference types="react" /> import { IIconProps } from './IconProps'; export interface IIconPropsWithType extends IIconProps { icon: string; } export default function Icon({ icon, ...rest }: IIconPropsWithType): JSX.Element;