0.5.0 • Published 8 years ago
ulna-ui v0.5.0
Ulna UI
- Components
- ULButton
- ULTitle
- ULSubTitle
Install
npm install ulna-ui --save
Components
ULButton
Props
- style - white, black, primary
- text - Button inner text
import { ULButton } from 'ulna-ui'
<ULButton style="white" text="Default Button" />
ULTitle
Props
- lite - Toggle lite theme
- text - Button inner text
import { ULTitle } from 'ulna-ui'
<ULTitle lite={true} text="Hello World" />
ULSubTitle
Props
- lite - Toggle lite theme
- text - Button inner text
import { ULSubTitle } from 'ulna-ui'
<ULSubTitle lite={true} text="Hello World" />
ULListItem
Props
- title - Top title text
- subTitle - Bigger and bold
- subSubTitle - Smaller on the bottom
import { ULListItem } from 'ulna-ui'
<ULListItem title="Hello" subTitle="World" />