aiq design system
0.5.145
The Component Library for React Projects of AiQfome Galera.
yarn add aiq-design-system
or
npm install aiq-design-systemOur components are in this storybook
Official Documentation: Coming Soon
To start using the components, follow these steps:
1-We make a wrapper available for you to add to the application, is ThemeProvider imported from AIQ-Design-System .
import React from 'react'
import ReactDOM from 'react-dom'
import { ThemeProvider } from 'aiq-design-system'
function App ( { children } ) {
return < ThemeProvider > { children } </ ThemeProvider >
}2-You can now come out using the imported components of AIQ-Design-System
import React from 'react'
import ReactDOM from 'react-dom'
import { Button , Flex , Input } from "aiq-design-system" ;
export const AiqComponent ( ) {
return (
< Flex p = { 20 } flexDirection = "column" >
< Input variant = "outlined" label = "duas pizzas é muito?" />
< Button variant = "contained" > fazer pedido! </ Button >
</ Flex >
)
} We have a template configured on Codesandbox with configured LIB!