🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

aws-icons

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aws-icons

AWS Icons, a Icons library for AWS icons based on the official AWS icon set (SVG)

latest
Source
npmnpm
Version
3.2.0
Version published
Weekly downloads
989
-60.75%
Maintainers
1
Weekly downloads
 
Created
Source
AWS Icons Logo

AWS Icons

https://aws-icon.vercel.app/


AWS Icons, a Icons library for AWS icons based on the official AWS icon set (SVG), Build from AWS Architecture Icons | Version Q 2025

📦 Installation

# npm
npm install --save aws-icons

# yarn
yarn add aws-icons

# pnpm
pnpm add aws-icons

CDN

<!-- unpkg -->
<img
  src="https://unpkg.com/aws-icons@latest/icons/CATEGORY/ICON_SVG_NAME.svg"
  alt="AWS Icons"
/>

<!-- jsdelivr -->
<img
  src="https://cdn.jsdelivr.net/npm/aws-icons@latest/icons/CATEGORY/ICON_SVG_NAME.svg"
  alt="AWS Icons"
/>

đź“– Usage

React

import AmazonEC2 from 'aws-icons/icons/architecture-service/AmazonEC2.svg';

const App = () => {
  return (
    <div>
      <img src={AmazonEC2} alt="Architecture Amazon EC2" />
    </div>
  );
};

export default App;

Next.js

import AmazonEC2 from 'aws-icons/icons/architecture-service/AmazonEC2.svg';

const App = () => {
  return (
    <div>
      <img src={AmazonEC2SVG.src} alt="Architecture Amazon EC2" />
    </div>
  );
};

export default App;

Vue.js

<script setup>
import AmazonEC2 from 'aws-icons/icons/architecture-service/AmazonEC2.svg';
</script>

<template>
  <AmazonEC2 />
</template>

Svelte

<script>
  import AmazonEC2 from 'aws-icons/icons/architecture-service/AmazonEC2.svg';
</script>

<main>
  <img src={AmazonEC2} alt="Architecture Amazon EC2" />
</main>

Solid.js

import type { Component } from 'solid-js';

import AmazonEC2 from 'aws-icons/icons/architecture-service/AmazonEC2.svg';

const App: Component = () => {
  return (
    <div>
      <img src={AmazonEC2} alt="Architecture Amazon EC2" />
    </div>
  );
};

export default App;

HTML

<!doctype html>

<html lang="en">
  <head>
    <title>AWS Icons</title>
  </head>

  <body>
    <img
      src="https://unpkg.com/aws-icons@latest/icons/architecture-service/AmazonEC2.svg"
      alt="Amazon EC2"
      type="image/svg+xml"
    />
  </body>
</html>

📝 License

his project is licensed under the MIT License - see the LICENSE file for details.

📜 Credits

Keywords

aws

FAQs

Package last updated on 14 Sep 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts