UNPKG

@payfit/unity-illustrations

Version:

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