Skip to content

an open source library of hand crafted minimalistic react components for your next react project

Notifications You must be signed in to change notification settings

WhoAdarshPandya/stoned

Repository files navigation

stoned

hand crafted react components made with love for your next react project

NPM JavaScript Style Guide

Install

npm install --save stoned

Usage

import React, { Component } from 'react'

import { Button } from 'stoned'
import 'stoned/dist/index.css'

export const App = () => {
  return (
    <>
      <Button variant='primary'>Primary</Button>
      <Button variant='secondary'>Secondary</Button>
      <Button variant='primary' raised={true} disableRipple={true}>
        Primary
      </Button>
    </>
  )
}

License

MIT © WhoAdarshPandya