UNPKG

oui-antd

Version:

An enterprise-class UI design language and React-based implementation

12 lines (11 loc) 298 B
import * as React from 'react'; export interface IconProps { type: string; className?: string; title?: string; onClick?: React.MouseEventHandler<any>; spin?: boolean; style?: React.CSSProperties; } declare const Icon: (props: IconProps) => JSX.Element; export default Icon;