UNPKG

@payfit/unity-illustrations

Version:

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