New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

react-button-component

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-button-component

A simple react button component

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
5
25%
Maintainers
1
Weekly downloads
 
Created
Source

react-button-component

A simple react button component based on styled-components with basic styles. Great when you want a quick button that looks neat enough and is yet, customizable to the heart!

Installation

  yarn add react-button-component

Usage

To use the Button component, simply import it into your project, and use it just like any other component!

The base component

By default, the button has some base styles applied to make it look clean!

import React, { Component } from 'react';
import Button from 'react-button-component';

class App extends Component {
  render() {
    return (
      <div className="App">
        <Button onClick={() => alert('Welcome!')}>
          Hop in!
        </Button>
      </div>
    );
  }
}

export default App;

Result:

Easily extend and overwrite with styled-components

The button component is styled using styled-components library, which means you the Button component is in fact, a Styled component! Now you can use Button.extend to extend the styles till your heart is content! For example, we can modify the default component in the above file to have a custom style matching a particular theme:

import React, { Component } from 'react';
import Button from 'react-button-component';
import logo from './logo.svg';
import './App.css';

const CustomizedButton = Button.extend`
  color: #FFF;
  border: none;
  border-radius: 5px;
  background: linear-gradient(70deg, #FF5686, #FF7B9E);
  border-bottom: 5px solid #C44267;
`

class App extends Component {
  render() {
    return (
      <div className="App">
        <CustomizedButton onClick={() => alert('bonkers!')}>
          Chearful!
        </CustomizedButton>
      </div>
    );
  }
}

export default App;

Result:

Created by

buoyantair

License

MIT

Keywords

react

FAQs

Package last updated on 14 Apr 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts