UNPKG

@payfit/unity-illustrations

Version:

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