0.2.1 • Published 3 years ago

@thesis-ui/modal v0.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Modal component - Thesis UI

Installation

$ yarn add @thesis-ui/modal
$ npm install @thesis-ui/modal

Usage

import Modal, { ModalHeader, ModalFooter } from '@thesis-ui/modal';
import Button from '@thesis-ui/button';

<Modal
  onClose={onClose}
>
  <ModalHeader onClose={onClose}>
    Are you sure?
  </ModalHeader>

  <div>
    <p>
      You're about to remove <strong>Kovacs Geza-Tamas</strong> user.
    </p>
    <p>Are you sure you want to proceed?</p>
  </div>

  <ModalFooter>
    <Button>Yes, remove</Button>
    <Button isSecondary>Cancel</Button>
  </ModalFooter>
</Modal>