Getting Started
  • Installation
Components
  • Alert
  • Badge
  • Button
  • Card
  • Checkbox
  • Drawer
  • Dropdown
  • Input
  • Modal
  • Overlay
  • Radio
  • Switch
  • Tabs
  • Tag
  • Toast
Advanced Components
  • Searchable Select
  • Datatable (Beta)
Alert

    Installation

    PearKIT is a rich set of open source UI components for React.

    Download #

    PearKIT is available for download at npm

    npm i pearkit

    Usage #

    Tailwind was used for the designs of this component. Even though tailwindcss is compiled, it needs a preflight file. You can check out tailwind next or vite/react installation at this address.

    // import css file to main css or scss file
    @import "pearkit/dist/style.css";
    
    // import any component in your components
    import {PButton} from "pearkit";
        
    // and you can use it like this.   
    <PButton color="green" label="Button 1" />