npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@imdonggun/react-ui-kit

v0.0.20

Published

### Accordion

Readme

UI Package(@imdonggun/react-ui-kit)

Accordion

source

src/components/Accordion

children

  • index
  • AccordionButton
  • AccordionContent
  • AccordionTitle

Example

<Accordion>
  <Accordion.Title>Title</Accordion.Title>
  <Accordion.Button>Accordion Button</Accordion.Button>
  <Accordion.Content>This is AccordionContent</Accordion.Content>
</Accordion>

accoridon-ezgif com-optimize


Breadcrumb

source

src/components/Breadcrumb

children

  • index
  • BreadcrumbItem

Example

<Breadcrumb width={200}>
  <Breadcrumb.Item href="/a">A</Breadcrumb.Item>
  <Breadcrumb.Item href="/a-a">A-B</Breadcrumb.Item>
  <Breadcrumb.Item href="/a-a-a">A-B-C</Breadcrumb.Item>
  <Breadcrumb.Item href="/a-a-a">A-B-C-D</Breadcrumb.Item>
  <Breadcrumb.Item href="/a-a-a">A-B-C-D-E</Breadcrumb.Item>
  <Breadcrumb.Item href="/a-a-a">A-B-C-D-E-F</Breadcrumb.Item>
</Breadcrumb>

breadcrumb-ezgif com-optimize


Calendar

source

src/components/Calendar

children

  • index
  • CalendarCurrent
  • CalendarBody
  • CalendarNavigator

Example

<Calendar>
  <Calendar.Navigator></Calendar.Navigator>
  // custom CalendarBody
  <Calendar.Body>
    {(dates) => dates.map((date) => <div>{date.toLocaleString()}</div>)}
  </Calendar.Body>
</Calendar>

calendar-ezgif com-optimize


Carousel

source

src/components/Carousel

children

  • index
  • CarouselIndicator
  • CarouselNavigator
  • CarouselItem
  • CarouselItemList

Example

<Carousel totalItemCount={3}>
  <Carousel.ItemList>
    <Carousel.Item index={0}>Item-1</Carousel.Item>
    <Carousel.Item index={1}>Item-2</Carousel.Item>
    <Carousel.Item index={2}>Item-3</Carousel.Item>
  </Carousel.ItemList>
  <Carousel.Navigator></Carousel.Navigator>
  <Carousel.Indicator />
</Carousel>

carousel-ezgif com-optimize


Pagination

source

src/components/Pagination

children

  • index
  • Navigator
  • PageButtons

Example

<Pagination
  totalPages={30}
  currentPage={currentPage}
  onPageChange={handlePageChange}
>
  <Pagination.PageButtons />
  <Pagination.Navigator />
</Pagination>

pagination-ezgif com-optimize


Popover

source

src/components/Popover

children

  • Root
  • PopoverContent
  • PopoverTrigger

Example

<Popover.Root position="bottom-center">
  <Popover.Trigger>Open</Popover.Trigger>
  <Popover.Content>Place content for the popover here.</Popover.Content>
</Popover.Root>

popover-ezgif com-video-to-gif-converter


Tabs

source

src/components/Tabs

children

  • index
  • TabMenu
  • TabMenuList
  • TabPannel

Example

<Tabs onChangeTab={handleChangeTab} defaultTabIndex={currentTabIndex}>
  <Tabs.MenuList>
    <Tabs.Menu index={1}>Menu1</Tabs.Menu>
    <Tabs.Menu index={2}>Menu2</Tabs.Menu>
    <Tabs.Menu index={3}>Menu3</Tabs.Menu>
  </Tabs.MenuList>
  <Tabs.Pannel index={1}>Content1</Tabs.Pannel>
  <Tabs.Pannel index={2}>Content2</Tabs.Pannel>
  <Tabs.Pannel index={3}>Content3</Tabs.Pannel>
</Tabs>

tabs-ezgif com-video-to-gif-converter


Progress

source

src/components/Progress

children

  • index

Example

<Progress stop={stop} />

progress-ezgif com-video-to-gif-converter


DatePicker

source

src/components/DatePicker

children

  • index

Example

<DatePicker date={new Date()} onChangeDate={handleChangeDate} />

datepicker-ezgif com-video-to-gif-converter


Modal

source

src/components/Modal

children

  • Root
  • Backdrop
  • Trigger
  • Close
  • Content

Example

<Modal.Root
  onCloseModal={handleCloseModal}
  open={isOpen}
  onOpenModal={handleOpenModal}
>
  <Modal.Backdrop />
  <Modal.Trigger>
    <div>Custom-Trigger</div>
  </Modal.Trigger>
  <Modal.Content>
    <Modal.Close>
      <div> custom-modal-close</div>
    </Modal.Close>
    <div>Modal Content</div>
  </Modal.Content>
</Modal.Root>

modal-ezgif com-video-to-gif-converter


Select

source

src/components/Select

children

  • Root
  • Trigger
  • Content
  • Item

Example

<Select.Root onChangeValue={handleChangeValue} value={selectedValue}>
  <Select.Trigger>Select Item</Select.Trigger>
  <Select.Content>
    <Select.Item value={"1"}>One</Select.Item>
    <Select.Item value={"2"}>Two</Select.Item>
    <Select.Item value={"3"}>Three</Select.Item>
  </Select.Content>
</Select.Root>

select-ezgif com-video-to-gif-converter


Toast

source

src/components/Toast

children

  • ToastAction
  • ToastContainer
  • ToastDescription
  • ToastTitle

hooks

  • useToast

Example

const toast = useToast();

<button
  onClick={() => {
    toast({
      title: "This is toast title",
      description: "this is toast description",
      duration: 3000,
      actionElem: <ToastAction>close button</ToastAction>,
    });
  }}
>
  Click Toast
</button>;

<Toast.Container />;

toast-ezgif com-optimize