UNPKG

@payfit/unity-illustrations

Version:

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