Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@snack-uikit/icons

Package Overview
Dependencies
Maintainers
3
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@snack-uikit/icons

Пакет с иконками

  • 0.19.2
  • Source
  • npm
  • Socket score

Version published
Maintainers
3
Created
Source

Icons

Installation

npm i @snack-uikit/icons

Как добавить новую иконку

  1. Добавьте новый svg-файл в соответсвующую коллекцию иконок в папке svgs (это может быть новый размер иконки). Далее все нужные файлы сгенерятся автоматически во время релиза пакета.
  2. Если такой коллекции еще нет, создайте новую (new-collection - имя новой коллекции):
    • создайте папку new-collection внутри svgs
    • добавьте svg-файлы с названиями new-collections-s/xs (где s/xs размер иконки, 16 или 24)
    • добавьте скрипт в package.json:
    "build:new-collection": "npm run fix:icons --directory=new-collection && npm run build:icons --directory=new-collection",
    
    • обновите скрипт compile в package.json:
    "compile": "... && npm run build:new-collection"
    
  3. Чтобы новая иконка появилась локально, запустите скрипт build:packages в корневом package.json

Examples

import { ChevronLeftSVG }  from '@snack-uikit/icons';

<ChevronLeftSVG size={24}/>

Props

interface ISvgIconProps extends SVGProps<SVGSVGElement> {
  className?: string;
  size?: string | number;
  style?: React.CSSProperties;
}

Changelog

FAQs

Package last updated on 18 Dec 2023

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc