UNPKG

@payfit/unity-illustrations

Version:

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