A color input designed for the React library Material UI
// with npm
npm install mui-color-input
// with yarn
yarn add mui-color-input
The component uses @ctrl/tinycolor for color parsing and formatting.
import React from 'react'
import { MuiColorInput } from 'mui-color-input'
const MyComponent = () => {
const [value, setValue] = React.useState('#ffffff')
const handleChange = (newValue) => {
setValue(newValue)
}
return <MuiColorInput format="hex" value={value} onChange={handleChange} />
}
Learn how to use MUI color input with Next.js
Once you have installed MUI Color Input
in your next.js project, it is important to transpile it as it is an ESM package first.
/** @type {import('next').NextConfig} */
const nextConfig = {
transpilePackages: ['mui-color-input'],
// your config
}
module.exports = nextConfig
Go to GitHub Releases
This library comes with TypeScript "typings". If you happen to find any bugs in those, create an issue.
Please file an issue for bugs, missing documentation, or unexpected behavior.
Please file an issue to suggest new features. Vote on feature requests by adding a π. This helps maintainers prioritize what to work on.
MIT