1.1.0 • Published 1 year ago

@gridmize/react v1.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

Gridmize Design System - React Components

Sobre

Um conjunto de componentes do Gridmize Design System para utilizar na contrução do seu projeto Web.

Setup

  1. Instalação
npm i -D @gridmize/react
  1. Importação e utilização
import { Button } from '@gridmize/react';

export function App() {
  return (
    <div
      style={{
        display: 'flex',
        flexDirection: 'column',
        alignItems: 'center',
        justifyContent: 'center',
      }}
    >
      <Button variant='primary' size='md' disabled={false}>
        My Button with Gridmize
      </Button>
    </div>
  );
}