UNPKG

@payfit/unity-illustrations

Version:

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