UNPKG

@payfit/unity-illustrations

Version:

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