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