win95-media-player
Version:
Back from 1995, and running on your website
20 lines (16 loc) • 437 B
JavaScript
const React = require('react');
const propTypes = require('prop-types');
const { themes } = require('react95');
const style = {
width: 0,
borderRight: `2px solid ${themes.default.borderLightest}`,
borderLeft: `2px solid ${themes.default.borderDark}`,
margin: 0,
alignSelf: 'stretch',
marginTop: -4,
marginBottom: -4
};
const VerticalDivider = () => {
return <div style={style} />;
};
module.exports = VerticalDivider;