@alicloud/cloud-charts
Version:

23 lines (22 loc) • 543 B
TypeScript
import * as React from 'react';
import './cdn.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 {};