UNPKG

@payfit/unity-illustrations

Version:

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