UNPKG

@alicloud/cloud-charts

Version:

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

22 lines (21 loc) 545 B
import * as React from 'react'; import './cdn.scss'; import { Status } from '../common/types'; export 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(): React.JSX.Element; }