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