UNPKG

@payfit/unity-illustrations

Version:

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