Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@skbkontur/react-icons
Advanced tools
Для использования иконок необходимо установить пакет @skbkontur/react-icons
.
В конфиге вебпака требуется настроить css-loader с включенными модулями.
В 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
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>;
Список изменений доступен по ссылке ссылке
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
React SVG icons
The npm package @skbkontur/react-icons receives a total of 2,133 weekly downloads. As such, @skbkontur/react-icons popularity was classified as popular.
We found that @skbkontur/react-icons demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 11 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.