### Install @gravity-ui/icons npm package Source: https://github.com/gravity-ui/icons/blob/main/README.md Instructions to install the @gravity-ui/icons package as a development dependency using npm. ```shell npm install --save-dev @gravity-ui/icons ``` -------------------------------- ### Import Gravity UI React icon components Source: https://github.com/gravity-ui/icons/blob/main/README.md Demonstrates two ways to import React icon components from the @gravity-ui/icons package: direct default import from a specific path or named import from the main package entry. ```js import Cloud from '@gravity-ui/icons/Cloud'; ``` ```js import {Cloud} from '@gravity-ui/icons'; ``` -------------------------------- ### Import Gravity UI SVG icon files Source: https://github.com/gravity-ui/icons/blob/main/README.md Shows how to import an SVG icon file directly from the @gravity-ui/icons package. This approach typically requires a suitable SVG loader configured in the build system. ```js import cloudIcon from '@gravity-ui/icons/svgs/cloud.svg'; ``` -------------------------------- ### CLA Agreement Statement for Pull Requests Source: https://github.com/gravity-ui/icons/blob/main/CONTRIBUTING.md Contributors must include this statement in their pull requests to confirm their agreement with the Yandex Contributor License Agreement (CLA). The `[link]` placeholder should be replaced with the URL to the English or Russian version of the CLA. ```Text I hereby agree to the terms of the CLA available at: [link]. ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.