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