import React from 'react'; import { PieChart, Pie, Cell } from './../../../../components/recharts'; import colors from './../../../../colors'; const data = [ {name: 'Free', value: 40 }, {name: 'Used', value: 60 }, ]; const COLORS = [ colors['light'], colors['primary'] ]; const SIZE = 70; const TinyArcChart = () => ( { data.map((entry, index) => ) } ); export { TinyArcChart };