UNPKG

@payfit/unity-illustrations

Version:

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