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

@lynkit/icons

v0.3.0

Published

Icon components for Lynkit

Readme

@lynkit/icons

React 图标组件库,提供 1000+ 个高质量图标。

特性

  • 🎨 currentColor - 支持 CSS 颜色继承
  • 📐 size/color Props - 灵活配置尺寸和颜色
  • 🔗 forwardRef - 支持 ref 转发
  • 🌲 Tree-shaking - 按需加载,极致优化
  • 📦 双格式输出 - ES Modules + CommonJS

安装

npm install @lynkit/icons
# or
yarn add @lynkit/icons
# or
pnpm add @lynkit/icons

使用

基础使用

import { Iconadd, Iconclose, Iconcheckcircle } from '@lynkit/icons';

function App() {
  return (
    <div>
      <Iconadd />
      <Iconclose size={20} />
      <Iconcheckcircle color="green" />
    </div>
  );
}

CSS 颜色继承

图标默认使用 currentColor,会自动继承父元素的 color 属性:

// 图标颜色跟随文字颜色
<button style={{ color: 'blue' }}>
  <Iconadd /> 添加
</button>

// 配合 CSS 变量
<span style={{ color: 'var(--primary-color)' }}>
  <Iconcheckcircle />
</span>

路径导入(极致 Tree-shaking)

// 只打包需要的图标
import Iconadd from '@lynkit/icons/es/icons/Iconadd';

Ref 引用

import { useRef } from 'react';
import { Iconadd } from '@lynkit/icons';

function App() {
  const iconRef = useRef<SVGSVGElement>(null);
  return <Iconadd ref={iconRef} />;
}

API

IconProps

| 属性 | 类型 | 默认值 | 说明 | | --------- | ------------------ | ---------------- | ---------- | | size | number \| string | 24 | 图标尺寸 | | color | string | 'currentColor' | 图标颜色 | | className | string | - | 自定义类名 | | style | CSSProperties | - | 自定义样式 |

继承所有 SVGProps<SVGSVGElement> 属性。

开发

# 转换图标(CLI 拉取后执行)
pnpm transform

# 构建
pnpm build

# 开发模式
pnpm dev

许可证

MIT