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

@teamsparta/stack-icons

v1.0.0

Published

stack icons

Downloads

124

Readme

Icons

Installation

pnpm add @teamsparta/stack-icons
yarn add @teamsparta/stack-icons

사용설명서

1. 변수명 예시

  • v1
    • Figma Ag: arrow_drop_down, line, 16: <ArrowDropDownLine size={16} color={"red"}/>
    • Figma Ag: close_circle_fill, 20 => <CloseCircleFill size={20} primaryColor={"red"} secondaryColor={"blue"}/>
  • v2
    • Figma 상 명시된 Icon Props들 중 ${Category}${Name}의 조합
    • Screenshot 2023-11-15 at 11 40 16 AM
    • 위 이미지에서의 아이콘 이름은 ArrowChevronRightCircle

2. Props

  • v1
    • 아이콘 이름에 line이 있는 경우: color
    • 아이콘 이름에 fill이 있는 경우: primaryColor & secondaryColor
    • 색 관련 props 작성 안할 시, 기본색 (neutralDay.gray100) 제공
  • v2
    • Figma에서 Style 존재 시, style ('line' | 'fill') & size (16 | 20 | 24) 필수
    • Figma에서 Style 없을 시, size 필수
    • color props 작성 안할 시, 기본색 (neutralDay.gray90) 제공

3. 사용 방법 (auto complete)


export const LoginPage = () => {
  return (
    <S.Wrapper>
      <ArrowChevronRightCircle size={16} style={"line"} color={"red"}/>
    </S.Wrapper>
  )
}