0.1.6 • Published 3 years ago

quaantum-components v0.1.6

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

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

3 years ago

0.1.5

3 years ago

0.1.4

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.3

3 years ago

0.1.0

3 years ago

0.0.11

3 years ago

0.0.12

3 years ago

0.0.10

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago