UNPKG

@payfit/unity-illustrations

Version:

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