Files
echo-nexus/node_modules/@radix-ui/react-icons/README.md
T

51 lines
1.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Radix Icons
A crisp set of 15×15 icons designed by the [WorkOS](https://workos.com) team.
Visit [icons.radix-ui.com](https://icons.radix-ui.com) to browse the icons.
---
## Documentation
All icons are available as individual React components.
Install Radix Icons from npm:
```bash
npm install @radix-ui/react-icons
```
Import the icons into your React project:
```js
import { FaceIcon, ImageIcon, SunIcon } from '@radix-ui/react-icons';
function MyComponent() {
return (
<div>
<FaceIcon />
<SunIcon />
<ImageIcon />
</div>
);
}
```
## Contributing
Please follow our [contributing guidelines](./CONTRIBUTING.md).
## Authors
- Vlad Moroz ([@vladyslavmoroz](https://twitter.com/vladyslavmoroz))
- Colm Tuite ([@colmtuite](https://twitter.com/colmtuite))
- Pedro Duarte ([@peduarte](https://twitter.com/peduarte))
- Lochlan Bunn ([@loklaan](https://twitter.com/loklaan))
## License
Licensed under the MIT License, Copyright © 2022-present WorkOS.
See [LICENSE](./LICENSE.md) for more information.