UNPKG

@payfit/unity-illustrations

Version:

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