2024-02-02 02:52:36 +04:00
|
|
|
import React, { Fragment } from 'react';
|
2024-02-02 17:42:45 +04:00
|
|
|
import { Button, Divider } from '../src/primitive-components/components';
|
2024-02-01 01:58:19 +04:00
|
|
|
|
2024-02-01 00:46:06 +04:00
|
|
|
export default function Page() {
|
2024-02-01 01:58:19 +04:00
|
|
|
return (
|
|
|
|
|
<Fragment>
|
2024-02-02 17:42:45 +04:00
|
|
|
<div className={'m3 m3-wrapper'}>
|
|
|
|
|
<div>
|
|
|
|
|
<Button>Label</Button>
|
|
|
|
|
</div>
|
|
|
|
|
<Divider orientation={'vertical'} variant={'full-width'} />
|
|
|
|
|
<div>
|
|
|
|
|
<Button>Label</Button>
|
|
|
|
|
</div>
|
|
|
|
|
<Divider orientation={'vertical'} variant={'inset'} />
|
|
|
|
|
<div>
|
|
|
|
|
<Button>Label</Button>
|
|
|
|
|
</div>
|
|
|
|
|
<Divider orientation={'vertical'} variant={'middle-inset'} />
|
|
|
|
|
<div>
|
|
|
|
|
<Button disabled>Label</Button>
|
2024-02-01 01:58:19 +04:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</Fragment>
|
|
|
|
|
);
|
2024-02-01 00:46:06 +04:00
|
|
|
}
|