UNPKG

antd

Version:

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

13 lines (12 loc) 330 B
/// <reference types="react" /> 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;