0.0.9 • Published 1 year ago

noxui-react v0.0.9

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

Nox UI

a ReactJS Library based on MUI

NoxUI is a customized UI library that adding couple missing parts of MUI (JoyUI) in daily usage.

Features

  • Ready to Use: Import components frequantly used.
  • Customizable: Customize Components anyway you like.

Dependencies

Dependencies that NoxUI use:

Installation

bun add 'react-noxui'

Basic Usage

import { Button, Modal } from "noxui-react";

// Modal States
const [openModal, setOpenModal] = useState(false);
const [serviceLoading, setServiceLoading] = useState(false);

// Modal Handlers
const closeModal = () => setOpenModal(true);
const openModal = () => setOpenModal(false);
const conformDialog = () => {
  // do something here
  closeModal();
};
<>
  <Modal
    open={openModal}
    serviceLoading={serviceLoading}
    onConfirm={conformDialog}
    title="Modal Title"
  >
    Modal Content
  </Modal>
  <Button isLoading={false} fadeIn={true} loadAnimation={true}>
    Custom Button
  </Button>
  ;
</>;
0.0.9

1 year ago

0.0.8

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago