Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 22x 48x 12x | import { IDonutChartStyleProps, IDonutChartStyles } from './DonutChart.types'; export const getStyles = (props: IDonutChartStyleProps): IDonutChartStyles => { const { className, width, height, theme } = props; return { root: [ theme.fonts.medium, 'ms-DonutChart', { alignItems: 'center', display: 'flex', flexDirection: 'column', width: '100%', height: '100%', }, className, ], chart: { width: width, height: height, boxSizing: 'content-box', overflow: 'visible', alignmentAdjust: 'center', display: 'block', }, legendContainer: { paddingTop: '16px', width: `${width}px`, }, }; }; |