UNPKG

@hhgtech/hhg-components

Version:
11 lines (10 loc) 404 B
import React from 'react'; import { BabyVaccinationDetail, SiteType } from "../../../interfaces/types"; export type BabyGrowthProfileRadioProps = { profile: BabyVaccinationDetail['profile']; onChange: (id: string) => void; isActive: boolean; siteType?: SiteType; }; declare const BabyGrowthProfileRadio: React.FC<BabyGrowthProfileRadioProps>; export { BabyGrowthProfileRadio };