UNPKG

@payfit/unity-illustrations

Version:

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