UNPKG

@payfit/unity-illustrations

Version:

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