UNPKG

@payfit/unity-illustrations

Version:

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