Divider
区切り線を描画するコンポーネントです。
構造
div.a--divider.-bd:[bs|is]
Props
プロパティ | 説明 |
---|---|
variant | a--divider--{variant} クラスを出力します。 |
bdw ,bds ,bdc | 区切り線のボーダープロパティ |
Import
import { Divider } from '@lism-ui/core';
Usage
↓
例
…Contents…
…Contents…
リサイズ可能
<Box bgc='base-2' py='50' ta='c'>...Contents...</Box><Divider /><Box bgc='base-2' py='50' ta='c'>...Contents...</Box>
↓
スタイルの変更例
…Contents…
…Contents…
リサイズ可能
<Box bgc='base-2' py='50' ta='c'>...Contents...</Box><Divider bds='dotted' bdw='4px' bdc='blue'/><Box bgc='base-2' py='50' ta='c'>...Contents...</Box>
↓
縦方向の区切り線
…Contents…
…Contents…
リサイズ可能
<Flex ai='c' g='30'> <FlexItem fx='1' bgc='base-2' py='50' ta='c'>...Contents...</FlexItem> <Divider bd='is' aslf='stretch' /> <FlexItem fx='1' bgc='base-2' py='50' ta='c'>...Contents...</FlexItem></Flex>