UNPKG

@payfit/unity-illustrations

Version:

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