Sha256: d73c7e7f6ae55faf331c9d5cfc230ac9284693d924f3484f702cd74349f51d3a
Contents?: true
Size: 639 Bytes
Versions: 94
Compression:
Stored size: 639 Bytes
Contents
import React from 'react' import { CircleChart, Title } from '../../' const dataWithABlock = [ { name: 'Waiting for Calls', value: 41, }, { name: 'On Call', value: 49, }, { name: 'After call', value: 10, }, ] const CircleChartBlock = (props) => ( <div> <CircleChart chartData={dataWithABlock} id="chart-with-a-block" innerSize="lg" marginTop="xl" rounded {...props} > <Title size={1} tag="div" {...props} > {'83'} </Title> </CircleChart> </div> ) export default CircleChartBlock
Version data entries
94 entries across 94 versions & 1 rubygems