@beyond-ui/react
TypeScript icon, indicating that this package has built-in type declarations

1.4.0 • Public • Published

Beyond React Component Library

A React Component Library from the Beyond design system


Usage


Create React App


To use Beyond UI Library in React, all you need to do is install the @beyond-ui/react package:

$ yarn add @beyond-ui/react

# or

$ npm i @beyond-ui/react
  1. Now you can start importing components:
import { Button } from "@beyond-ui/react";

function App() {
  return (
        <Button>
            Hello,Welcome to Beyond Ui
        <Button>
      )
};
  1. You can also define your own Theme:
import { ThemeProvider, Button } from "@beyond-ui/react";

function App() {
  return (
        <ThemeProvider theme={{
            color : {
                myCustomColor : "#0d0d0d"
            }
        }}>
            <Button bgcolor="myCustomColor">
            This Button is using a custom theme color
            </Button>
        <ThemeProvider>
      )
};

License

License MIT © Renli

Readme

Keywords

none

Package Sidebar

Install

npm i @beyond-ui/react

Weekly Downloads

1

Version

1.4.0

License

MIT

Unpacked Size

89.5 kB

Total Files

131

Last publish

Collaborators

  • ope_abidemi