UNPKG

@payfit/unity-illustrations

Version:

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