0.1.4 • Published 4 years ago

@scaleds/components-react v0.1.4

Weekly downloads
54
License
-
Repository
-
Last release
4 years ago

Scale-React

A React Proxy for Scale Components

Installation

  • To installl run yarn add @scaleds/components-react

Usage

import React from 'react';
import { ScaleButton } from '@scaleds/components-react';

const App: React.FC = () => (
  <div className="app">
    <h3 style={{ color: colors.primary.default }}>
      Button
    </h3>
    <ScaleButton variant="primary">Click!</ScaleButton>
  </div>
);