UNPKG

@payfit/unity-illustrations

Version:

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