Socket
Socket
Sign inDemoInstall

@idot-digital/custom-material-ui

Package Overview
Dependencies
34
Maintainers
2
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @idot-digital/custom-material-ui

Custom animated buttons using material-ui icons


Version published
Weekly downloads
12
Maintainers
2
Created
Weekly downloads
 

Readme

Source

custom-material-ui

Custom animated buttons using material-ui icons

NPM JavaScript Style Guide

Install

npm install --save custom-material-ui

Usage

import React from 'react'

import {
  AddButtonRotating,
  RemoveButtonBin,
  LogoutButton,
  CloseButton,
  EditButton,
  RefreshButton,
  FileSelectorButton,
  DoneButton,
  ChangePasswordButton,
  DownloadButton,
  UploadButton,
  VisibilityToggle,
  PublicToggle,
  ArrowToggle,
  EnabledToggle
} from '@idot-digital/custom-material-ui'
import '@idot-digital/custom-material-ui/dist/index.css'

const Example = () => {
  const [active, setActive] = React.useState(false)

  return (
    <React.Fragment>
      <AddButtonRotating onClick={() => console.log('click')}>
        Some content
      </AddButtonRotating>
      <VisibilityToggle
        onClick={(active) => setActive(() => active)}
        active={active}
        text='Visibility'
      />
    </React.Fragment>
  )
}

License

UNLICENSED © @idot-digital

FAQs

Last updated on 21 Apr 2021

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc