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