UNPKG

@payfit/unity-illustrations

Version:

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