1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 10:46:13 +02:00
Files
csslayout/client/placeholders/Line.tsx
2019-11-27 21:23:51 +07:00

16 lines
285 B
TypeScript

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