Skip to content
This repository was archived by the owner on Feb 18, 2020. It is now read-only.

BoilerMake/bm-kit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

8223ebb · Aug 26, 2018

History

16 Commits
Aug 7, 2018
Aug 7, 2018
Aug 26, 2018
Aug 7, 2018
Jul 25, 2018
Jul 25, 2018
Jul 25, 2018
Jul 25, 2018
Jul 25, 2018
Jul 25, 2018
Jul 25, 2018
Aug 26, 2018
Jul 25, 2018
Aug 7, 2018

Repository files navigation

BM-Kit

BM-Kit is BoilerMake's UI library. We use this as the basis for our frontend styling.

Components

Button

import { Button } from 'bm-kit';

<Button
	className={PropTypes.string}
	size={PropTypes.oneOf([undefined, 'small', 'large'])}
	mood={PropTypes.oneOf([undefined, 'good', 'bad'])}
	onClick={PropTypes.func} >
	Button Text
</Button>

Text Input

import { TextInput } from 'bm-kit';

<TextInput
	label={PropTypes.string}
	placeholder={PropTypes.oneOf([undefined, 'small', 'large'])}
/>

Card

import { Card } from 'bm-kit';

<Card>
	<div>You can even put HTML inside!</div>
</Card>