UNPKG

@payfit/unity-illustrations

Version:

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