import React from 'react'; import { withStyles } from '@material-ui/core/styles'; const styles = { st0: {fill: '#F9CC8A'}, st2: {fill: '#C0E5E0'}, st3: {fill: '#FFFFFF'}, st4: {fill: '#8B5E3C'}, st5: {fill: '#FBD015'}, st6: {fill: '#F69D98'}, }; function Doughnut(props: { style: {[key: string]: string | number }, classes: { st0: string, st2: string, st3: string, st4: string, st5: string, st6: string, }}) { let {st0, st2, st3, st4, st5, st6 } = props.classes; return ( ); } export default withStyles(styles)(Doughnut);