Reactstrap React Github Button

-
Pro Component

A switch has the markup of a custom checkbox but uses the .custom-switch class to render a toggle switch. Switches also support the disabled attribute.


Example

Unfortunately, we are experiencing some difficulties with our live preview docs, and for some reason, the code demo does not work for this plugin and components. Please check them out here.

import React from "react";
import GitHubButton from "react-github-button";
// reactstrap components
// import {
//
// } from "reactstrap";

// Core Components

function Example() {
  return (
    <>
      <div className="github-button">
        <GitHubButton
          type="stargazers"
          size="large"
          namespace="creativetimofficial"
          repo="argon-design-system-react"
        />
      </div>
    </>
  );
}

export default Example;

Props

If you want to see more examples and properties please check the official react-github-button Documentation.

You can also check the Official Github Repository.