Divider
Divider renders a semantic horizontal rule to visually separate sections of content.
Installation
npm install @libretexts/davis-react
Basic Usage
import { Stack, Divider } from '@libretexts/davis-react';
export default function Example() {
return (
<Stack gap="md">
<p>Section one content.</p>
<Divider />
<p>Section two content.</p>
</Stack>
);
}
Documentation in Progress
Full documentation for this component is being written. Check back soon for complete API reference, examples, and accessibility guidelines.