import * as React from "react" import { cn } from "@/lib/utils" export interface SectionLabelProps extends React.HTMLAttributes { number?: string } const SectionLabel = React.forwardRef( ({ className, number, children, ...props }, ref) => { return ( {number && <>{number} • } {children} ) }, ) SectionLabel.displayName = "SectionLabel" export { SectionLabel }