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