Separator
Visually or semantically separates content.
Qwik Primitives
An open-source UI component library.
BlogDocsSource
Features
-
Supports horizontal and vertical orientations.
Import
import { Separator } from 'qwik-primitives';
Anatomy
Import the component.
import { component$ } from '@builder.io/qwik';
import { Separator } from 'qwik-primitives';
const SeparatorDemo = component$(() => {
return <Separator.Root />;
});
API Reference
Root
Examples
Vertical orientation
Use the orientation
prop to create a vertical separator.
import { component$ } from '@builder.io/qwik';
import { Separator } from 'qwik-primitives';
const SeparatorDemo = component$(() => {
return (
<div style={{ height: '1rem', display: 'flex', alignItems: 'center' }}>
<span>Blog</span>
<Separator.Root orientation="vertical" style={{ margin: '0 1rem', height: '100%', width: '0.0625rem', backgroundColor: '#000000' }} />
<span>Docs</span>
<Separator.Root orientation="vertical" style={{ margin: '0 1rem', height: '100%', width: '0.0625rem', backgroundColor: '#000000' }} />
<span>Source</span>
</div>
);
});
Accessibility
Adheres to the separator role requirements.