UNPKG

@payfit/unity-illustrations

Version:

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