@quaantum/components
v0.5.0
Published
UI Components for React
Downloads
7
Readme
Quaantum Components
Quaantum Components is a react library that provides multiple UI components ultra-customizables.
Getting Started
1.- Wrap your app in the QuaantumProvider with your custom theme:
import { QuaantumProvider, extendTheme, theme } from 'quaantum-components'
const yourTheme = extendTheme(theme, {
colors: {
primary: '#123456',
},
font: 'Arial',
components: {
Input: {
base: {
bgColor: 'white',
},
},
},
});
interface YourAppProps {}
const YourApp: React.FC<YourAppProps> = (props) => {
return (
<QuaantumProvider theme={yourTheme}>
<YourComponent />
</QuaantumProvider>
);
};