Divider
<p-divider> | PDivider
Dividers are used to visually separate or group elements.
<p-divider></p-divider>
import PDivider from 'pure-uikit/dist/react/divider'; const App = () => <PDivider />;
Examples
Width
Use the --width
custom property to change the width of the divider.
<p-divider style="--width: 4px;"></p-divider>
import PDivider from 'pure-uikit/dist/react/divider'; const App = () => <PDivider style={{ '--width': '4px' }} />;
Color
Use the --color
custom property to change the color of the divider.
<p-divider style="--color: tomato;"></p-divider>
import PDivider from 'pure-uikit/dist/react/divider'; const App = () => <PDivider style={{ '--color': 'tomato' }} />;
Spacing
Use the --spacing
custom property to change the amount of space between the divider and it’s
neighboring elements.
<div style="text-align: center;"> Above <p-divider style="--spacing: 2rem;"></p-divider> Below </div>
import PDivider from 'pure-uikit/dist/react/divider'; const App = () => ( <> Above <PDivider style={{ '--spacing': '2rem' }} /> Below </> );
Vertical
Add the vertical
attribute to draw the divider in a vertical orientation. The divider will span
the full height of its container. Vertical dividers work especially well inside of a flex container.
<div style="display: flex; align-items: center; height: 2rem;"> First <p-divider vertical></p-divider> Middle <p-divider vertical></p-divider> Last </div>
import PDivider from 'pure-uikit/dist/react/divider'; const App = () => ( <div style={{ display: 'flex', alignItems: 'center', height: '2rem' }} > First <PDivider vertical /> Middle <PDivider vertical /> Last </div> );
Menu Dividers
Use dividers in menus to visually group menu items.
<p-menu style="max-width: 200px;"> <p-menu-item value="1">Option 1</p-menu-item> <p-menu-item value="2">Option 2</p-menu-item> <p-menu-item value="3">Option 3</p-menu-item> <p-divider></p-divider> <p-menu-item value="4">Option 4</p-menu-item> <p-menu-item value="5">Option 5</p-menu-item> <p-menu-item value="6">Option 6</p-menu-item> </p-menu>
import PDivider from 'pure-uikit/dist/react/divider'; import PMenu from 'pure-uikit/dist/react/menu'; import PMenuItem from 'pure-uikit/dist/react/menu-item'; const App = () => ( <PMenu style={{ maxWidth: '200px' }}> <PMenuItem value="1">Option 1</PMenuItem> <PMenuItem value="2">Option 2</PMenuItem> <PMenuItem value="3">Option 3</PMenuItem> <p-divider /> <PMenuItem value="4">Option 4</PMenuItem> <PMenuItem value="5">Option 5</PMenuItem> <PMenuItem value="6">Option 6</PMenuItem> </PMenu> );
Importing
If you’re using the autoloader or the traditional loader, you can ignore this section. Otherwise, feel free to use any of the following snippets to cherry pick this component.
To import this component from the CDN using a script tag:
<script type="module" src="https://cdn.jsdelivr.net/npm/pure-uikit@1.3.13/cdn/components/divider/divider.js"></script>
To import this component from the CDN using a JavaScript import:
import 'https://cdn.jsdelivr.net/npm/pure-uikit@1.3.13/cdn/components/divider/divider.js';
To import this component using a bundler:
import 'pure-uikit/dist/components/divider/divider.js';
To import this component as a React component:
import PDivider from 'pure-uikit/dist/react/divider';
Properties
Name | Description | Reflects | Type | Default |
---|---|---|---|---|
vertical
|
Draws the divider in a vertical orientation. |
|
boolean
|
false
|
updateComplete |
A read-only promise that resolves when the component has finished updating. |
Learn more about attributes and properties.
Custom Properties
Name | Description | Default |
---|---|---|
--color |
The color of the divider. | |
--width |
The width of the divider. | |
--spacing |
The spacing of the divider. |
Learn more about customizing CSS custom properties.