Open-source icon library of AWS services.
AWS Icons is a free icon library of AWS services. It contains icons of all AWS services, and it is constantly updated with new services.
How to use
You download the package and use the icons in your projects. or you can use the CDN.
#npm
npm install --save aws-icons
#yarn
yarn add aws-icons
#pnpm
pnpm add aws-icons
<!-- unpkg -->
<img
src="https://unpkg.com/aws-icons@latest/icons/ICON_SVG_NAME.svg"
alt="AWS Icons"
/>
<!-- jsdelivr -->
<img
src="https://cdn.jsdelivr.net/npm/aws-icons@latest/icons/ICON_SVG_NAME.svg"
alt="AWS Icons"
/>
Open-source icon library of AWS services for React.
AWS React Icons is a free icon library of AWS services for React. It contains icons of all AWS services, and it is constantly updated with new services.
How to use
You download the package and use the icons in your projects.
#npm
npm install --save aws-react-icons
#yarn
yarn add aws-react-icons
#pnpm
pnpm add aws-react-icons
import { AmazonEC2 } from 'aws-react-icons';
const App = () => {
return (
<div>
<AmazonEC2 />
</div>
);
export default App;