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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@jdesignlab/button

v0.12.1

Published

사용자의 클릭으로 특정 동작을 실행하는데 사용됩니다. 다양한 액션을 트리거하거나, 사용자에게 여러 선택지를 제공하는 등 다양한 용도로 사용될 수 있습니다.

Downloads

64

Readme

Button

사용자의 클릭으로 특정 동작을 실행하는데 사용됩니다. 다양한 액션을 트리거하거나, 사용자에게 여러 선택지를 제공하는 등 다양한 용도로 사용될 수 있습니다.

Usage

Storybook

<Button>버튼</Button>

Props

| Property | Allow Types | Description | Default | | -------- | ------------------------------------------- | -------------------------------------------------------------- | ------------- | | onClick | () => void | 버튼 클릭 시 이벤트를 이벤트를 호출합니다. | undefined | | variant | solid outline ghost link unstyled | 버튼의 시각적 요소를 변경하여 다양한 버튼 디자인을 제공합니다. | solid | | size | sm md lg xl | 버튼의 크기를 조절합니다. | md | | disabled | boolean | 버튼을 비활성화합니다. | false | | color | ColorToken | 버튼의 색상을 지정합니다. | primary-500 | | full | boolean | 버튼의 너비를 부모요소의 전체 너비만큼 확장합니다. | false | | icon | React.ReactElement | 버튼 좌측에 아이콘을 삽입합니다. | undefined | | as | React.ElementType | html 태그를 별도로 지정해줍니다. | button |