UNPKG

@payfit/unity-illustrations

Version:

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