UNPKG

@payfit/unity-illustrations

Version:

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