import React, { forwardRef } from "react"; import { BodyLong } from "../../typography"; import { cl } from "../../utils/helpers"; export interface FormSummaryValueProps extends React.HTMLAttributes { children: React.ReactNode; } export const FormSummaryValue = forwardRef< HTMLDivElement, FormSummaryValueProps >(({ children, className, ...rest }, ref) => { return ( {children} ); }); export default FormSummaryValue;