1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import React from "react"; const GroupLabel = React.forwardRef< HTMLParagraphElement, React.ComponentPropsWithoutRef<"p"> >(({ className, ...props }, ref) => ( <p ref={ref} className="text-xs font-medium text-label px-2 pb-3" {...props} /> )); GroupLabel.displayName = "GroupLabel"; export { GroupLabel };