UNPKG

@alicloud/cloud-charts

Version:

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

13 lines (12 loc) 268 B
import * as React from 'react'; import './index.scss'; interface ArrowProps { type: 'up' | 'down'; } export default class Wcircle extends React.Component<ArrowProps> { static defaultProps: { type: string; }; render(): JSX.Element; } export {};