New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@sibipro/caffeine

Package Overview
Dependencies
Maintainers
6
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sibipro/caffeine

Component library for Sibi. Not really intended for public consumption.

  • 0.1.1
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-92.86%
Maintainers
6
Weekly downloads
 
Created
Source

@sibipro/caffeine

Component library for Sibi. Not really intended for public consumption.

Installation

Install the package and all peer dependencies.

// yarn is the best, use it
yarn add @sibipro/caffeine

// add peer dependencies
yarn add react react-dom prop-types

Usage

Import a theme and the <SibiThemeProvider />, pass the theme into the provider, and make the rest of your app a child of it.

import React from 'react';
import theme from '@sibipro/caffeine/themes/website'
import SibiThemeProvider from '@sibipro/caffeine/components/SibiThemeProvider';
import Button from '@sibipro/caffeine/components/Button';

const App = () => (
  <SibiThemeProvider theme={theme}>
    <p>I am some React app.</p>
    <Button color="primary" variant="contained" onClick={() => alert('You clicked me!')}>Click Me</Button>
  </SibiThemeProvider>
);

export default App;

FAQs

Package last updated on 23 Jul 2019

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc