UNPKG

@payfit/unity-illustrations

Version:

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