# @csuclawebservices/icons

> Icons to use in the WordPress Block Editor.

Latest version **1.25.0** (published 2026-01-26) · GPL-2.0-or-later license · 0 weekly downloads

## Install

```sh
npm install @csuclawebservices/icons
pnpm add @csuclawebservices/icons
yarn add @csuclawebservices/icons
bun add @csuclawebservices/icons
```

## Health

**Score 55/100 (C)** — status: stable.

Positive: has types; no vulnerabilities; has provenance.

Warnings: low downloads; no esm support.

## Facts

| | |
|---|---|
| Version | 1.25.0 |
| Published | 2026-01-26 |
| First published | 2024-09-10 |
| Weekly downloads | 0 |
| License | GPL-2.0-or-later |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 207.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Provenance | attested (GitHub Actions) |
| GitHub stars | 0 |
| Author | CLA Web Services |
| Maintainers | csuclawebservices |
| Keywords | wordpress, icons |

## Links

- npm: https://www.npmjs.com/package/@csuclawebservices/icons
- Repository: https://github.com/csuclawebservices/icons
- Homepage: https://github.com/csuclawebservices/icons#readme
- Issues: https://github.com/csuclawebservices/icons/issues
- npm.io page: https://npm.io/package/@csuclawebservices/icons

## Dependencies (1)

- [@wordpress/primitives](https://npm.io/package/@wordpress/primitives.md) ^4.7.0

## Alternatives

- [@fortawesome/react-fontawesome](https://npm.io/package/@fortawesome/react-fontawesome.md) — 2.2M weekly downloads
- [roboto-fontface](https://npm.io/package/roboto-fontface.md) — 196.0K weekly downloads
- [@react-native-vector-icons/common](https://npm.io/package/@react-native-vector-icons/common.md) — 150.4K weekly downloads
- [@procore/core-icons](https://npm.io/package/@procore/core-icons.md) — 4.6K weekly downloads
- [@react-md/material-icons](https://npm.io/package/@react-md/material-icons.md) — 1.6K weekly downloads

## Recent versions

- 1.25.0 (latest) — 2026-01-26
- 1.24.0 — 2025-12-09
- 1.23.0 — 2025-11-05
- 1.22.0 — 2025-01-27
- 1.21.0 — 2025-01-10
- 1.20.1 — 2024-12-02
- 1.20.0 — 2024-12-02
- 1.19.0 — 2024-11-30
- 1.18.1 — 2024-11-30
- 1.18.0 — 2024-11-30
- 1.17.0 — 2024-11-30
- 1.16.0 — 2024-11-20
- 1.15.0 — 2024-11-20
- 1.14.1 — 2024-11-02
- 1.14.0 — 2024-11-02
- … 15 more at https://npm.io/package/@csuclawebservices/icons/versions

## README

# Icons
An npm package to use as WordPress Block Editor icon components. See the full [icon component list](icons.md).

## Install
```bash
npm install @csuclawebservices/icons
```

## Usage

### As Icon Component
```js
import { Icon } from '@wordpress/icons';
import { layout1 } from '@csuclawebservices/icons';

return (
	<Icon icon={layout1}/>
);
```

### As Block Icon
```js
import { registerBlockType } from '@wordpress/blocks';
import { layout1 } from '@csuclawebservices/icons';

import metadata from './block.json';
import edit from './edit';
import save from './save';

registerBlockType( metadata.name, {
	icon: layout1,
	edit,
	save
});
```

## License
This project is licensed under the GPL 2.0 License - see the [LICENSE](LICENSE) file for details.

## Copyright

© 2022 GoDaddy. Original build.js.
© 2024 Colorado State University. All rights reserved.

---
_Source: https://npm.io/package/@csuclawebservices/icons · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
