Files
dyolink/frontend/src/components/ui/treatment/fdiChartDesigns.ts

7 lines
254 B
TypeScript
Raw Normal View History

2026-05-08 03:58:53 +03:30
export const FDI_CHART_DESIGNS = [
{ id: 'clinical', label: 'Clinical (gradient + roots)' },
{ id: 'wireframeSculpt', label: 'Wireframe shells (line sculpture)' },
] as const;
export type FdiChartDesignId = (typeof FDI_CHART_DESIGNS)[number]['id'];