1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 18:56:29 +02:00
Files
csslayout/placeholders/VerticalLine.tsx
Phuoc Nguyen 829d57c1bf Cleanup
2021-09-27 23:33:13 +07:00

16 lines
306 B
TypeScript

import * as React from 'react';
const VerticalLine: React.FC<{}> = () => {
return (
<div
style={{
backgroundColor: 'rgba(0, 0, 0, 0.3)',
height: '100%',
width: '1px',
}}
/>
);
};
export default VerticalLine;