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