Separator

Visually or semantically separates content.

  • Supports horizontal and vertical orientations.

import { Separator } from 'qwik-primitives';

Import the component.

import { component$ } from '@builder.io/qwik';
import { Separator } from 'qwik-primitives';

const SeparatorDemo = component$(() => {
  return <Separator.Root />;
});

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>
  );
});

Adheres to the separator role requirements.