UNPKG

@payfit/unity-illustrations

Version:

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