All files / src/components/DonutChart/Pie Pie.styles.ts

100% Statements 5/5
100% Branches 0/0
100% Functions 1/1
100% Lines 4/4

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  22x   22x 4x 4x                            
import { IPieStyleProps, IPieStyles } from './Pie.types';
import { FontSizes, FontWeights, HighContrastSelectorBlack } from '@fluentui/react/lib/Styling';
 
export const getStyles = (props: IPieStyleProps): IPieStyles => {
  const { theme } = props;
  return {
    root: {},
    insideDonutString: {
      fontSize: FontSizes.xLargePlus,
      fontWeight: FontWeights.semibold,
      fill: theme.semanticColors.bodyText,
      selectors: {
        [HighContrastSelectorBlack]: {
          fill: 'rgb(179, 179, 179)',
        },
      },
    },
  };
};