1.0.2 • Published 5 years ago
@swapy.io/swapy-button v1.0.2
@swapy.io/swapy-button
Button component for React js created by Swapy team
Install
npm install --save @swapy.io/swapy-buttonUsage
import React, { Component } from 'react'
import { SwapyButton } from '@swapy.io/swapy-button'
import '@swapy.io/swapy-button/dist/index.css'
class Example extends Component {
  render() {
    return (
      <SwapyButton variant='capsule_outlined' height='50px' width='300px'>
        Ajay
      </SwapyButton>
    )
  }
}