openreplay/frontend/app/components/Dashboard/Widgets/common/Divider.js
2021-05-01 15:12:01 +05:30

11 lines
163 B
JavaScript

const Divider = () => (
<div
style={ {
height: '95px',
width: '2px',
backgroundColor: '#F6F6F6',
} }
/>
);
export default Divider;