All components
Section
Titled content sections with description and body slots for settings pages.
Members
Invite and manage your team.
Install
zsh — section
1bunx stylexblocks add sectionUsage — Base UI
section.tsx
1234567891011121314151617import { Section, sectionAnnotated } from "#components/ui/base-ui/section.tsx";
export function Example() { return ( // composition per part via render; for the two-column annotated layout // compose the exported styles: // <Section.Root style={sectionAnnotated.root}> + // <Section.Header style={sectionAnnotated.header}> <Section.Root> <Section.Header> <Section.Title>Members</Section.Title> <Section.Description>Invite and manage your team.</Section.Description> </Section.Header> <Section.Body>…</Section.Body> </Section.Root> );}