summaryrefslogtreecommitdiffstats
path: root/front/odiparpack/app/containers/UiElements/demos/Dividers/CommonDividers.js
blob: db67c0f0a87f488813704b013b4c9a0ca744123c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import React, { Fragment, PureComponent } from 'react';
import Type from 'ba-styles/Typography.scss';
import {
  GradientDivider,
  DashDivider,
  ShadowDivider,
  InsetDivider,
} from 'ba-components/Divider';

import { Typography } from '@material-ui/core';

class CommonDivider extends PureComponent {
  render() {
    return (
      <Fragment>
        <Typography variant="button" className={Type.textCenter}>Gradient Divider</Typography>
        <GradientDivider />
        <Typography variant="button" className={Type.textCenter}>Dash Divider</Typography>
        <DashDivider />
        <Typography variant="button" className={Type.textCenter}>Shadow Divider</Typography>
        <ShadowDivider />
        <Typography variant="button" className={Type.textCenter}>Inset Divider</Typography>
        <InsetDivider />
      </Fragment>
    );
  }
}

export default CommonDivider;