chasercomponents
Chaser HQ Component Library
Install
npm install --save chaser-components
Usage
import React from 'react'
import { Button, Text, Heading, Icon, Box, Shelf, Stack, ButtonGroup } from 'chasercomponents'
import 'chasercomponents/dist/index.css'
const App = () => {
return (<Box>
<Stack>
<Button>A button!</Button>
<Text>Some cool text</Text>
<Heading>A heading</Heading>
<Icon name="check-filled" />
<ButtonGroup>
<Button intent="danger">Grouped button!</Button>
<Button appearance="secondary">Grouped button!</Button>
</ButtonGroup>
<Shelf>
<Icon name="check-filled" />
<Icon name="pencil" />
<Icon name="options" />
</Shelf>
</Stack>
</Box>)
}
export default App
License
MIT © AshCorah