import { Icon } from '@nocobase/client';
import React from 'react';
const RadarChart = () => (
);
const FunnelChart = () => (
);
const ScatterChart = () => (
);
const ColumnChart = () => (
);
const BarChart = () => (
);
const LineChart = () => (
);
const PieChart = () => (
);
const AreaChart = () => (
);
Icon.register({
'icon-area': (props) => ,
'icon-pie': (props) => ,
'icon-radar': (props) => ,
'icon-funnel': (props) => ,
'icon-line': (props) => ,
'icon-bar': (props) => ,
'icon-column': (props) => ,
'icon-scatter': (props) => ,
});