UNPKG

@payfit/unity-illustrations

Version:

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