Last change
on this file since efaa053 was 07f4e8b, checked in by darsov2 <62809499+darsov2@…>, 10 months ago |
prefinal fixes
|
-
Property mode
set to
100644
|
File size:
306 bytes
|
Line | |
---|
1 | import React from "react";
|
---|
2 |
|
---|
3 | const Line = (props) => {
|
---|
4 | const left = props.left === "true" ? "1.8rem" : "1.85rem";
|
---|
5 | return (<>
|
---|
6 | <div style={{borderLeft: "5px solid #159895", height: "3em", marginLeft: left, marginTop: "-1.4rem", marginBottom: "-1.4rem"}}></div>
|
---|
7 | </>)
|
---|
8 | }
|
---|
9 |
|
---|
10 | export default Line; |
---|
Note:
See
TracBrowser
for help on using the repository browser.