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