dental-plaque-chart
Version:
A basic implementation of a dental plaque chart, using React and Tailwind.
10 lines (9 loc) • 427 B
TypeScript
import { DentalPiece, Surface } from '../models/DentalPiece';
type TeethGroupProps = {
teeth: DentalPiece[];
onClickSurface?: (id: string, surface: Surface, mark: boolean) => void;
onDiscardPiece?: (id: string) => void;
disabled?: boolean;
};
declare const TeethGroup: ({ teeth, onClickSurface, onDiscardPiece, disabled }: TeethGroupProps) => import("react/jsx-runtime").JSX.Element;
export default TeethGroup;