kopia lustrzana https://github.com/shoelace-style/shoelace
136 wiersze
2.9 KiB
Markdown
136 wiersze
2.9 KiB
Markdown
# Divider
|
|
|
|
[component-header:sl-divider]
|
|
|
|
```html preview
|
|
<sl-divider></sl-divider>
|
|
```
|
|
|
|
```jsx react
|
|
import { SlDivider } from '@shoelace-style/shoelace/dist/react';
|
|
|
|
const App = () => <SlDivider />;
|
|
```
|
|
|
|
## Examples
|
|
|
|
### Width
|
|
|
|
Use the `--width` custom property to change the width of the divider.
|
|
|
|
```html preview
|
|
<sl-divider style="--width: 4px;"></sl-divider>
|
|
```
|
|
|
|
```jsx react
|
|
import { SlDivider } from '@shoelace-style/shoelace/dist/react';
|
|
|
|
const App = () => <SlDivider style={{ '--width': '4px' }} />;
|
|
```
|
|
|
|
### Color
|
|
|
|
Use the `--color` custom property to change the color of the divider.
|
|
|
|
```html preview
|
|
<sl-divider style="--color: tomato;"></sl-divider>
|
|
```
|
|
|
|
```jsx react
|
|
import { SlDivider } from '@shoelace-style/shoelace/dist/react';
|
|
|
|
const App = () => <SlDivider style={{ '--color': 'tomato' }} />;
|
|
```
|
|
|
|
### Spacing
|
|
|
|
Use the `--spacing` custom property to change the amount of space between the divider and it's neighboring elements.
|
|
|
|
```html preview
|
|
<div style="text-align: center;">
|
|
Above
|
|
<sl-divider style="--spacing: 2rem;"></sl-divider>
|
|
Below
|
|
</div>
|
|
```
|
|
|
|
```jsx react
|
|
import { SlDivider } from '@shoelace-style/shoelace/dist/react';
|
|
|
|
const App = () => (
|
|
<>
|
|
Above
|
|
<SlDivider 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.
|
|
|
|
```html preview
|
|
<div style="display: flex; align-items: center; height: 2rem;">
|
|
First
|
|
<sl-divider vertical></sl-divider>
|
|
Middle
|
|
<sl-divider vertical></sl-divider>
|
|
Last
|
|
</div>
|
|
```
|
|
|
|
```jsx react
|
|
import { SlDivider } from '@shoelace-style/shoelace/dist/react';
|
|
|
|
const App = () => (
|
|
<div
|
|
style={{
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
height: '2rem'
|
|
}}
|
|
>
|
|
First
|
|
<SlDivider vertical />
|
|
Middle
|
|
<SlDivider vertical />
|
|
Last
|
|
</div>
|
|
);
|
|
```
|
|
|
|
### Menu Dividers
|
|
|
|
Use dividers in [menus](/components/menu) to visually group menu items.
|
|
|
|
```html preview
|
|
<sl-menu style="max-width: 200px;">
|
|
<sl-menu-item value="1">Option 1</sl-menu-item>
|
|
<sl-menu-item value="2">Option 2</sl-menu-item>
|
|
<sl-menu-item value="3">Option 3</sl-menu-item>
|
|
<sl-divider></sl-divider>
|
|
<sl-menu-item value="4">Option 4</sl-menu-item>
|
|
<sl-menu-item value="5">Option 5</sl-menu-item>
|
|
<sl-menu-item value="6">Option 6</sl-menu-item>
|
|
</sl-menu>
|
|
```
|
|
|
|
```jsx react
|
|
import { SlDivider, SlMenu, SlMenuItem } from '@shoelace-style/shoelace/dist/react';
|
|
|
|
const App = () => (
|
|
<SlMenu style={{ maxWidth: '200px' }}>
|
|
<SlMenuItem value="1">Option 1</SlMenuItem>
|
|
<SlMenuItem value="2">Option 2</SlMenuItem>
|
|
<SlMenuItem value="3">Option 3</SlMenuItem>
|
|
<sl-divider />
|
|
<SlMenuItem value="4">Option 4</SlMenuItem>
|
|
<SlMenuItem value="5">Option 5</SlMenuItem>
|
|
<SlMenuItem value="6">Option 6</SlMenuItem>
|
|
</SlMenu>
|
|
);
|
|
```
|
|
|
|
[component-metadata:sl-divider]
|