dc-copy/src/Separator.tsx
2025-02-05 00:03:38 +09:00

11 lines
259 B
XML

export function Separator() {
return <div style={{
content: "",
display: "inline-block",
width: "1px",
height: "12px",
background: "#ccc",
margin: "0 10px 0 6px",
verticalAlign: "-1px",
}} />;
}