import React from "react"; import { useThemeInternal } from "../../theme/Theme"; import { cl } from "../../utils/helpers"; export interface FormSummaryAnswerProps extends React.HTMLAttributes { /** * Must include: * - `` * - `` */ children: React.ReactNode; } export const FormSummaryAnswer = React.forwardRef< HTMLDivElement, FormSummaryAnswerProps >(({ children, className, ...rest }, ref) => { const ctx = useThemeInternal(); return (
{children}
); }); export default FormSummaryAnswer;