@alicloud/cloud-charts
Version:

22 lines (21 loc) • 547 B
TypeScript
import * as React from 'react';
import './index.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;
}