UNPKG

@payfit/unity-illustrations

Version:

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