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