@ineuronintelligence/menkaui
v0.3.13
Published
Component library tailored for iNeuron.ai
Downloads
7
Readme
Menka UI
Component library tailored for iNeuron.ai
Documentation
coming soon
Installation
Install component-library with npm
npm install @ineuronintelligence/menkaui
import css in global.css
@import "@ineuronintelligence/menkaui/index.css";
Tailwind Config
- import color,box shadow and screens in tailwind config
const { color, boxShadow, screens, fontFamily } = require("@ineuronintelligence/menkaui/theme");
- modify the default theme palette
theme: {
colors: color,
boxShadow: boxShadow,
screens: screens,
fontFamily: fontFamily,
},
Break point of package
xs: "320px",
sm: "464px",
md: "744px",
lg: "984px",
xl: "1248px"
For React Project we need to modified the script
"start": "GENERATE_SOURCEMAP=false react-scripts start",
"build": "GENERATE_SOURCEMAP=false react-scripts build",