UNPKG

@hhgtech/hhg-components

Version:
10 lines (9 loc) 351 B
import React from 'react'; import { BadgeProps } from '@mantine/core'; import { BabyVaccinationStatus } from "../../../interfaces/types"; type _BadgeProps = { status: BabyVaccinationStatus; content?: string; } & BadgeProps; export declare const _Badge: ({ status, sx, content, ...rest }: _BadgeProps) => React.JSX.Element; export {};