New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@karrotmarket/lynx-multicolor-icon

Package Overview
Dependencies
Maintainers
5
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@karrotmarket/lynx-multicolor-icon

Lynx multicolor icons for Seed Design System

latest
Source
npmnpm
Version
1.10.0
Version published
Maintainers
5
Created
Source

@karrotmarket/lynx-multicolor-icon

Lynx multicolor icons for Seed Design System.

Installation

yarn add @karrotmarket/lynx-multicolor-icon
yarn add -D @karrotmarket/lynx-icon-config

Setup

import { defineConfig } from '@lynx-js/rspeedy'
import { applyLynxIconConfig } from '@karrotmarket/lynx-icon-config'

export default defineConfig({
  plugins: [
    pluginReactLynx(),
  ],

  tools: {
    rspack(config) {
      applyLynxIconConfig(config)
      return config
    },
  },
})

Usage

import { IconApple, IconCamera } from '@karrotmarket/lynx-multicolor-icon';

function MyComponent() {
  return (
    <view>
      {/* Default size (24px) - uses original multicolor */}
      <IconApple />

      {/* Custom size */}
      <IconCamera size={32} />
    </view>
  );
}

Props

IconProps

interface IconProps {
  size?: number;   // Default: 24
}
  • size: Icon size in pixels (default: 24)

Note: Multicolor icons use their original colors and do not accept a color prop.

  • @karrotmarket/lynx-icon-config - Rspack config helper for Lynx icons (recommended)
  • @karrotmarket/lynx-icon-loader - Rspack/Webpack loader for Lynx icons (legacy)
  • @karrotmarket/assets-multicolor - Raw SVG assets

License

MIT

FAQs

Package last updated on 15 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts