UNPKG

@payfit/unity-illustrations

Version:

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