mingle-design-system
npm install mingle-uimingle-ui is a powerful design system built with Tailwind CSS and Storybook.\
It’s designed to help developers and designers create consistent, beautiful interfaces effortlessly.
Install mingle-ui into your project using NPM:
``bash`
npm install mingle-ui
If you are already using mingle-ui and want to update to the latest version, use the following command:
`bash`
npm install mingle-ui@latest
`ts
import { FormProvider, useForm } from 'react-hook-form';
import { InputField, PrimaryButton } from "mingle-ui";
function LoginPage() {
const methods = useForm({
mode: 'all',
});
const onSubmit = (data) => {console.log(data)};
return (
);
}
export default LoginPage;
``
This ensures that all mingle-ui components render with the intended design specifications.
mingle-ui offers a wide range of components that are ready to use in your projects. To see the components available and learn how to use them, refer to the Storybook documentation provided with the package.
🔗 Mingle Design System - Storybook
mingle-ui is released under the MIT License.