UNPKG

@payfit/unity-illustrations

Version:

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