UNPKG

@payfit/unity-illustrations

Version:

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