UNPKG

@payfit/unity-illustrations

Version:

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