@gorazdo/material-you
Version:
Material You theme for @material-ui library
6 lines (5 loc) • 354 B
JavaScript
import React from "react";
export const Shape = () => {
return (React.createElement("svg", { width: "400px", height: "400px" },
React.createElement("path", { d: "M100,100 h200 a20,20 0 0 1 20,20 v200 a20,20 0 0 1 -20,20 h-200 a20,20 0 0 1 -20,-20 v-200 a20,20 0 0 1 20,-20 z", fill: "none", stroke: "black", "stroke-width": "3" })));
};