UNPKG

@payfit/unity-illustrations

Version:

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