1.0.1 • Published 4 years ago

react-stray-ui v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

react-stray-ui

A react framework ui components.

NPM JavaScript Style Guide

Install

npm install --save react-stray-ui

Usage

import { Grid, Item, Heading, Paragraph } from 'react-stray-ui'

<Grid
      areas={['hello']}
      rows='1fr 1fr 1fr'
      columns='repeat(3, minmax(100px, 1fr))'
      space='24px'
    >
      <Item first>
        <div
          style={{ width: '700px', height: '100px', border: '1px solid red' }}
        >
          <Heading tag='h1' motion duration='400' reset>
            Título
          </Heading>
          <Paragraph size='24px' weight='bold' smSize='12px' align='left'>
            Isso é um texto!
          </Paragraph>
        </div>
      </Item>
      <Item first>

License

MIT © MatthausZillig