UNPKG

@payfit/unity-illustrations

Version:

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