UNPKG

@payfit/unity-illustrations

Version:

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