Skip to content

martinmunillas/quaantum-components

Repository files navigation

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>
  );
};