drawDB/src/components/rect.jsx

28 lines
511 B
React
Raw Normal View History

2023-09-19 20:47:06 +08:00
import React from "react";
const Rect = (props) => {
return (
<g>
<rect
key={props.id}
x={props.x}
y={props.y}
width={props.width}
height={props.height}
style={{ fill: "blue", cursor: "move" }}
onMouseDown={props.onMouseDown}
/>
<text
x={props.x + 50}
y={props.y + 50}
textAnchor="middle"
style={{ fill: "white" }}
>
{props.label}
</text>
</g>
);
};
export default Rect;