Material-based graphical components for easy design in ReactJS, look at the implementation Here
This is a React plug-and-play module available through the npm registry.
Before installing, download and install React 16.8.6 or higher is required.
Installation is done using the npm install command:
npm i design-tool-kit-react-js
or
yarn add design-tool-kit-react-js
Labels:
import React from "react";
import { SketchLabel } from "design-tool-kit-react-js";
function App() {
return (
<div className="App">
<SketchLabel />
</div>
);
}
export default App;
MIT