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