File size: 1,070 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import type { Meta } from "@storybook/react-vite"
import { Box } from "../src"

export default {
  title: "Charts / Donut Chart",
  decorators: [
    (Story) => (
      <Box p="10">
        <Story />
      </Box>
    ),
  ],
} satisfies Meta

export { DonutChartBasic as Basic } from "compositions/examples/charts/donut-chart-basic"
export { DonutChartWithPointLabel as PointLabel } from "compositions/examples/charts/donut-chart-with-point-label"
export { DonutChartWithCenteredText as CenteredText } from "compositions/examples/charts/donut-chart-with-centered-text"
export { DonutChartWithAnglePadding as AnglePadding } from "compositions/examples/charts/donut-chart-with-angle-padding"
export { DonutChartWithStartAndEndAngle as StartAndEndAngle } from "compositions/examples/charts/donut-chart-with-start-and-end-angle"
export { DonutChartWithDetachedSegment as DetachedSegment } from "compositions/examples/charts/donut-chart-with-detached-segment"
export { DonutChartWithOtherLabel as OtherLabel } from "compositions/examples/charts/donut-chart-with-other-label"