UNPKG

@alicloud/cloud-charts

Version:

![](https://img.shields.io/npm/v/@alicloud/cloud-charts?color=%23ff8200)

23 lines (22 loc) 545 B
import * as React from 'react'; import './index.scss'; import { Status } from '../common/types'; interface WiconProps { className?: string; style?: React.CSSProperties; type?: string; size?: string; status?: Status | string; reverse?: boolean; } export default class Wicon extends React.Component<WiconProps> { static displayName: string; static defaultProps: { size: string; type: string; status: string; }; constructor(props: WiconProps); render(): JSX.Element; } export {};