UNPKG

@payfit/unity-illustrations

Version:

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