UNPKG

@payfit/unity-illustrations

Version:

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