duoyun-ui
Version:
A lightweight desktop UI component library, implemented using Gem
23 lines (22 loc) • 967 B
TypeScript
import { HTMLAttributes, RefAttributes } from 'react';
import { ForwardRefExoticComponent } from 'react';
import { DuoyunRadarChartElement } from '../elements/radar-chart';
export * from '../elements/radar-chart';
export type DyRadarChartProps = HTMLAttributes<HTMLDivElement> & RefAttributes<DuoyunRadarChartElement> & {
dimensions?: DuoyunRadarChartElement['dimensions'];
sequences?: DuoyunRadarChartElement['sequences'];
showPoint?: DuoyunRadarChartElement['showPoint'];
showArea?: DuoyunRadarChartElement['showArea'];
xAxi?: DuoyunRadarChartElement['xAxi'];
yAxi?: DuoyunRadarChartElement['yAxi'];
};
export type DyRadarChartExpose = {};
declare global {
namespace JSX {
interface IntrinsicElements {
'dy-radar-chart': DyRadarChartProps;
}
}
}
export declare const DyRadarChart: ForwardRefExoticComponent<Omit<DyRadarChartProps, "ref"> & RefAttributes<DyRadarChartExpose>>;
export default DyRadarChart;