0.1.6 • Published 4 years ago

quaantum-components v0.1.6

Weekly downloads
-
License
MIT
Repository
-
Last release
4 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

4 years ago

0.1.5

4 years ago

0.1.4

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.3

4 years ago

0.1.0

4 years ago

0.0.11

4 years ago

0.0.12

4 years ago

0.0.10

4 years ago

0.0.9

4 years ago

0.0.8

4 years ago

0.0.7

4 years ago

0.0.6

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago