UNPKG

@payfit/unity-illustrations

Version:

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