UNPKG

@payfit/unity-illustrations

Version:

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