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