mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 10:46:13 +02:00
16 lines
285 B
TypeScript
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;
|