UNPKG

@ultraviolet/plus

Version:
12 lines (11 loc) 514 B
import * as ProductIcon from '@ultraviolet/icons/product'; import type { PascalToCamelCaseWithoutSuffix } from '../../types'; type FAQProps = { description: string; productIconName?: PascalToCamelCaseWithoutSuffix<keyof typeof ProductIcon, 'ProductIcon'>; illustrationText?: number | string; notes?: string; title: string; }; export declare const FAQ: ({ productIconName, illustrationText, title, description, notes, }: FAQProps) => import("@emotion/react/jsx-runtime").JSX.Element; export {};