0.1.5 • Published 7 years ago

cyprex-ui v0.1.5

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

cyprex-ui

npm version Build Status

Requirements

You have to include Bootstrap and Font Awesome CSS in your application.

Grid system

Bootstrap grid system

import { Container, Row, Col } from 'cyprex-ui';

const MyGrid = () => (
  <Container>
    <Row>
      <Col xs={6}>First half</Col>
      <Col xs={6}>Second half</Col>
    </Row>
  </Container>
);

Button

Bootstrap button

import { Button } from 'cyprex-ui';

const MyButton = () => (
  <Button danger fullWidth>This will explode!</Button>
);

Icon

Font-awesome icon (pick them here)

import { Icon } from 'cyprex-ui';

const MyIcon = () => (
  <Icon type="wrench" />
);
0.1.5

7 years ago

0.1.4

7 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago