2026-07-11 09:26:43 +03:00
# React + Webpack 5
[← Back to home ](../../README.md )
A quick guide to installing and using SVG sprites in a React and Webpack 5 project.
The result is a typed React component and a separate SVG asset emitted through Webpack Asset Modules.
## 1. Install the package
```bash
2026-07-11 18:23:41 +03:00
npm install --save-dev @gromlab/svg -sprites
2026-07-11 09:26:43 +03:00
```
## 2. Create the sprite directory
```text
src/ui/file-manager/svg-sprite/
├── icons/
│ ├── check.svg
│ └── folder.svg
2026-07-13 20:07:42 +03:00
├── index.ts
2026-07-11 09:26:43 +03:00
└── svg-sprite.config.ts
```
Place the source SVG files in `icons/` .
## 3. Add the configuration
```ts
// src/ui/file-manager/svg-sprite/svg-sprite.config.ts
2026-07-13 20:07:42 +03:00
import { defineSpriteConfig } from '@gromlab/svg -sprites'
2026-07-11 09:26:43 +03:00
2026-07-13 20:07:42 +03:00
export default defineSpriteConfig({
mode: 'react@webpack ',
2026-07-11 09:26:43 +03:00
name: 'file-manager',
description: 'File manager icons',
})
```
2026-07-13 20:07:42 +03:00
The root barrel is application-owned and explicitly re-exports the generated API:
```ts
// src/ui/file-manager/svg-sprite/index.ts
export * from './.svg-sprite'
```
2026-07-11 09:26:43 +03:00
By default, SVG files are loaded from `./icons` . You can add shared icons from other directories through `inputFiles` : the directory and file list are combined into a single sprite.
2026-07-13 20:07:42 +03:00
The complete list of options is available under [Unified configuration ](reference.md#unified-configuration ).
2026-07-11 09:26:43 +03:00
## 4. Add generation to package.json
```json
{
"scripts": {
2026-07-13 20:07:42 +03:00
"sprite:file-manager": "svg-sprites src/ui/file-manager/svg-sprite/svg-sprite.config.ts",
2026-07-11 09:26:43 +03:00
"predev": "npm run sprite:file-manager",
"prebuild": "npm run sprite:file-manager",
"pretypecheck": "npm run sprite:file-manager"
}
}
```
Generated files are excluded from Git, so generation must run before `dev` , `build` , and `typecheck` .
First run:
```bash
npm run sprite:file-manager
```
## 5. Use the component
```tsx
import { FileManagerIcon } from './svg-sprite'
export const OpenFolderButton = () => (
< button type = "button" >
< FileManagerIcon icon = "folder" width = {24} height = {24} / >
Open
< / button >
)
```
TypeScript checks the `icon` value against the file names:
```tsx
< FileManagerIcon icon = "folder" / > // valid
< FileManagerIcon icon = "missing" / > // TypeScript error
```
2026-07-11 23:20:39 +03:00
Types, rendering methods, and color controls are described in the [technical reference ](reference.md#react-component-and-typescript ).
2026-07-11 09:26:43 +03:00
Webpack processes the generated `new URL('./sprite.svg', import.meta.url)` through Asset Modules and emits a separate SVG asset.
If the project already uses a custom SVG loader, make sure it does not intercept the generated `sprite.svg` instead of Asset Modules.
2026-07-13 20:07:42 +03:00
The generated component imports `react/react-component.module.css` , so Webpack must process CSS Modules through `css-loader` and `style-loader` or `MiniCssExtractPlugin` . If the TypeScript project does not include a declaration for CSS Modules, add one separately.
2026-07-11 23:20:39 +03:00
2026-07-11 09:26:43 +03:00
## 6. Add a debug page
Webpack does not support Vite's `import.meta.glob` API, so provide static loaders:
```tsx
import { SpriteViewer } from '@gromlab/svg -sprites/react'
const sources = [
2026-07-13 20:07:42 +03:00
() => import('./ui/file-manager/svg-sprite/.svg-sprite/svg-sprite.manifest.js'),
() => import('./ui/navigation/svg-sprite/.svg-sprite/svg-sprite.manifest.js'),
2026-07-11 09:26:43 +03:00
]
export const IconsDebugPage = () => (
< SpriteViewer sources = {sources} title = "Project icons" / >
)
```
The paths in `import()` must be string literals. Webpack creates chunks for the manifests and associates them with the SVG assets.
Only include the Viewer on a debug route or in an internal tool.
## Troubleshooting
2026-07-13 20:07:42 +03:00
- Missing `.svg-sprite/index.js` : run `npm run sprite:file-manager` .
- The Viewer does not load the sprite: check the `import()` path to `.svg-sprite/svg-sprite.manifest.js` .
2026-07-11 09:26:43 +03:00
- Incorrect asset URL: check `output.publicPath` .
- Another loader intercepts the SVG: exclude the generated sprite from the incompatible rule.
For Next.js, use the separate mode keys described in the [App Router ](next-app.md ) and [Pages Router ](next-pages.md ) guides.