UNPKG

@payfit/unity-illustrations

Version:

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