UNPKG

@payfit/unity-illustrations

Version:

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