0.5.0 • Published 2 years ago

@quaantum/components v0.5.0

Weekly downloads
-
License
MIT
Repository
-
Last release
2 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.5.0

2 years ago

0.3.0

2 years ago

0.2.7

2 years ago

0.4.0

2 years ago

0.2.6

2 years ago

0.2.3

2 years ago

0.2.5

2 years ago

0.2.4

2 years ago

0.2.2

3 years ago

0.2.1

3 years ago

0.2.0

3 years ago