mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 18:56:29 +02:00
20 lines
372 B
TypeScript
20 lines
372 B
TypeScript
import * as React from 'react';
|
|
|
|
interface LineProps {
|
|
backgroundColor?: string;
|
|
}
|
|
|
|
const Line: React.FC<LineProps> = ({ backgroundColor = 'rgba(0, 0, 0, 0.3)' }) => {
|
|
return (
|
|
<div
|
|
style={{
|
|
backgroundColor,
|
|
height: '1px',
|
|
width: '100%',
|
|
}}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default Line;
|