UNPKG

@payfit/unity-illustrations

Version:

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