@teamsparta/stack-divider
Version:
stack divider
18 lines (16 loc) • 425 B
JavaScript
// src/stories/_shared/SectionLabel.tsx
import { vars } from "@teamsparta/stack-tokens";
import { jsx } from "@emotion/react/jsx-runtime";
var LABEL_STYLE = {
fontSize: 18,
// DS subTitle2 (@teamsparta/stack-font)
fontWeight: 700,
marginBottom: 8,
color: vars.text.primary
};
function SectionLabel({ children }) {
return /* @__PURE__ */ jsx("div", { style: LABEL_STYLE, children });
}
export {
SectionLabel
};