0.1.0-alpha.51 • Published 7 years ago

bkn-ui-react v0.1.0-alpha.51

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

Note

This is still a work in progress. We recommend to NOT use it in production environment.

Beakyn UI React

Beakyn UI React is a set of React components that is a mix of Google's Material Design, Bootstrap 4 and some custom styles.

We will make docs and somelive examples available soon.

Installation

Beakyn UI React is available as an npm package.

npm install bkn-ui-react --save

Default Theme

Include CSS with default theme into HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css">
<link rel="stylesheet" href="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.css"> 

Roboto Font and Material Design Icons

Beakyn UI React was designed with the Roboto font and Material Design Icons in mind. So be sure to include it in your project. Here are detailed instructions on how to include Roboto and Material Design Icons.

Or you can just insert these into HTML

<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />

Usage

Here is a quick example to get you started.

import * as React from 'react';
import {Nav, NavLink} from 'reactstrap';
import {Layout} from 'bkn-ui-react';

const drawerContent = (
  <Nav vertical>
    <NavLink
      className="toggle-drawer active"
      href="#"
    >
      Link 1
    </NavLink>

    <NavLink
      className="toggle-drawer"
      href="#"
    >
      Link 2
    </NavLink>
  </Nav>
);

export const PageExample = () => (
  <Layout
    mainNavTitle="Blank Page"
    drawerContent={drawerContent}
    drawerHeaderTitle="App Name"
  >
    <h1 style={{margin: 80}}>Blank Page Content</h1>
  </Layout>
);

License

This project is licensed under the terms of the MIT license

0.1.0-alpha.51

7 years ago

0.1.0-alpha.50

7 years ago

0.1.0-alpha.49

7 years ago

0.1.0-alpha.48

7 years ago

0.1.0-alpha.47

7 years ago

0.1.0-alpha.46

7 years ago

0.1.0-alpha.45

7 years ago

0.1.0-alpha.44

7 years ago

0.1.0-alpha.43

7 years ago

0.1.0-alpha.42

7 years ago

0.1.0-alpha.41

7 years ago

0.1.0-alpha.40

7 years ago

0.1.0-alpha.39

7 years ago

0.1.0-alpha.38

7 years ago

0.1.0-alpha.37

7 years ago

0.1.0-alpha.36

7 years ago

0.1.0-alpha.35

7 years ago

0.1.0-alpha.34

7 years ago

0.1.0-alpha.33

7 years ago

0.1.0-alpha.32

7 years ago

0.1.0-alpha.31

7 years ago

0.1.0-alpha.30

7 years ago

0.1.0-alpha.29

7 years ago

0.1.0-alpha.28

7 years ago

0.1.0-alpha.27

7 years ago

0.1.0-alpha.26

7 years ago

0.1.0-alpha.25

7 years ago

0.1.0-alpha.24

7 years ago

0.1.0-alpha.23

7 years ago

0.1.0-alpha.22

7 years ago

0.1.0-alpha.21

7 years ago

0.1.0-alpha.20

7 years ago

0.1.0-alpha.19

7 years ago

0.1.0-alpha.18

7 years ago

0.1.0-alpha.17

7 years ago

0.1.0-alpha.16

7 years ago

0.1.0-alpha.15

7 years ago

0.1.0-alpha.14

7 years ago

0.1.0-alpha.13

7 years ago

0.1.0-alpha.12

7 years ago

0.1.0-alpha.11

7 years ago

0.1.0-alpha.10

7 years ago

0.1.0-alpha.9

7 years ago

0.1.0-alpha.8

7 years ago

0.1.0-alpha.7

7 years ago

0.1.0-alpha.6

7 years ago

0.1.0-alpha.5

7 years ago

0.1.0-alpha.4

7 years ago

0.1.0-alpha.3

7 years ago

0.1.0-alpha.2

7 years ago

0.1.0-alpha.1

7 years ago