UNPKG

@payfit/unity-illustrations

Version:

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