AWS Icons

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.

Install package / AWS Icons

#npm
npm install --save aws-icons

#yarn
yarn add aws-icons

#pnpm
pnpm add aws-icons

Install package / CDN

<!-- 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"
/>

AWS React 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.

Install package / AWS React Icons

#npm
npm install --save aws-react-icons

#yarn
yarn add aws-react-icons

#pnpm
pnpm add aws-react-icons

Usage

import { AmazonEC2 } from 'aws-react-icons';

const App = () => {
  return (
    <div>
      <AmazonEC2 />
    </div>
  );

export default App;