InlineLabel.jsx (232B)
1 2 3 4 5 6 7 8 9 10
export default function InlineLabel({ children, className = "", style = {} }) { return ( <div className={`section-label ${className}`} style={{ marginBottom: 0, ...style }} > {children} </div> ); }