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