UNPKG

@payfit/unity-illustrations

Version:

21 lines (20 loc) 507 B
import { IllustrationAsset, BaseSvgAsset } from './types.js'; export type DoctorAsset = IllustrationAsset<BaseSvgAsset & { readonly name: 'Doctor'; }>; /** * Doctor illustration asset * @example * ```tsx * import { Illustration } from '@payfit/unity-illustrations' * import Doctor from '@payfit/unity-illustrations/assets/Doctor' * * <Illustration * illustration={Doctor} * alt="Doctor illustration" * size="md" * /> * ``` */ declare const Doctor: DoctorAsset; export default Doctor;