import React, { forwardRef } from "react"; import { Label } from "../../typography"; export interface FormSummaryLabelProps extends React.HTMLAttributes { children: React.ReactNode; } export const FormSummaryLabel = forwardRef( ({ children, ...rest }, ref) => ( ), ); export default FormSummaryLabel;