New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@skbkontur/react-icons

Package Overview
Dependencies
Maintainers
11
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@skbkontur/react-icons

React SVG icons

  • 5.2.9
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
2.9K
decreased by-30.6%
Maintainers
11
Weekly downloads
 
Created
Source

Использование

Для использования иконок необходимо установить пакет @skbkontur/react-icons. В конфиге вебпака требуется настроить css-loader с включенными модулями.

current version

В 4.0 исходный код иконок распространяется в виде ES6 модулей. Это необходимо для обеспечения правильной работы tree-shaking.

Кроме этого все иконки доступны в виде именованного импорта из корня.

Если вы загружаете компоненты библиотеки в nodejs, например, в unit тестах, вам необходимо настроить трансформацию в CommonJS модулей из @skbkontur/react-icons, чтобы избежать ошибки Error [ERR_REQUIRE_ESM]: Must use import to load ES Module. Для сборки бандла в webpack конфиге ничего дополнительно настраивать не нужно. В скором времени появится нативная поддержка ES Modules в Jest

Props
type IconProps = {
  color?: string;
  name: IconName; // только для компонента Icon
  size?: number | string;
  disableCompensation?: boolean;
};

type IconName =
  | 'Menu'
  | 'Add'
  | 'ArchivePack'
  | 'ArchiveUnpack'
  | 'Attach'
  | 'Baby'
  | 'Backward'
  | 'BarcodeScanner'
  | 'Briefcase'
  | 'Calculator'
  | 'Calendar'
  | 'Card'
  | 'Certificate'
  | 'Clear'
  | ... 218 more ...
  | 'Infiniti';

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

Вся коллекция иконок доступна на гайдах. Там есть удобный поиск по иконам

Варианты использования иконок.

Для уменьшения размера бандла рекомендуется использовать компонент с конкретной иконкой

import { Icon } from './';
import { Ok } from './icons/Ok';

<div>
  <Ok size={16} color="red" />
  <Icon name="Ok" size={24} color="blue" />
  <Icon.Ok size={32} color="green" />
</div>;

Changelog

Список изменений доступен по ссылке ссылке

Все иконки

import { Icon } from './';

<div>
  <div style={{ columns: '3' }}>
    {Object.keys(Icon).map(name => {
      return (
        <div style={{ margin: '2px' }}>
          <Icon name={name} />
          <span style={{ marginLeft: '2px' }}> - {name}</span>
        </div>
      );
    })}
  </div>
</div>;

FAQs

Package last updated on 09 Jun 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