0.1.0 • Published 7 years ago

react-shoelaces v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

< 👟 /> react-shoelaces

CircleCI

shoelaces for react

Features

React component implementations for shoelaces

Getting started

npm install --save react-shoelaces

Docs

Grid

Container

import { Container } from 'react-shoelaces'

export const MyContainer = ({ children }) =>
  <Container>
    {children}
  </Container>

Row

import { Row } from 'react-shoelaces'

export const MyRow = ({ children }) =>
  <Row gutter='0.5em'>
    {children}
  </Row>

Col

import { Col } from 'react-shoelaces'

export const MyCol = ({ children }) =>
  <Col xs={1} md={6/12} gutter='0.5em'>
    {children}
  </Col>

Flex

import { Flex } from 'react-shoelaces'

export const MyFlex = ({ children }) =>
  <Flex inline column first>
    {children}
  </Flex>