horizontal line html react

41

horizontal line html react -

const ColoredLine = ({ color }) => (
    <hr
        style={{
            color: color,
            backgroundColor: color,
            height: 5
        }}
    />
);

Comments

Submit
0 Comments