You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rectangle.tsx 245B

12345678910111213
  1. import { RectangleShape } from "types"
  2. export default function Rectangle({ point, size }: RectangleShape) {
  3. return (
  4. <rect
  5. x={point[0]}
  6. y={point[1]}
  7. width={size[0]}
  8. height={size[1]}
  9. fill="black"
  10. />
  11. )
  12. }