🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

aws-react-icons

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aws-react-icons

AWS React Icons, a React library for AWS icons based on the official AWS icon set (SVG) and built with TypeScript.

2.1.1
latest
Source
npm
Version published
Weekly downloads
211
38.82%
Maintainers
1
Weekly downloads
 
Created
Source
AWS React Icons Logo

AWS React Icons

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


AWS React Icons, a React library for AWS icons based on the official AWS icon set (SVG) and built with TypeScript, Build from AWS Architecture Icons | Version Q1 2024

📦 Install package

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

#yarn
yarn add aws-react-icons

#pnpm
pnpm add aws-react-icons

📖 Usage

// single import
import ArchitectureServiceAmazonEC2 from 'aws-react-icons/icons/ArchitectureServiceAmazonEC2';

const App = () => {
  return (
    <div>
      <ArchitectureServiceAmazonEC2 size={30} />
    </div>
  );
};

export default App;

OR

// multiple imports
import {
  ArchitectureServiceAmazonEC2,
  ArchitectureServiceAWSCloudFormation,
} from 'aws-react-icons';

const App = () => {
  return (
    <div>
      <ArchitectureServiceAmazonEC2 size={30} />
      <ArchitectureServiceAWSCloudFormation size={30} />
    </div>
  );
};

export default App;

📚 Icons Props

Prop nameTypeDefault valueDescription
sizenumber/ string24The size of the icon.

📝 License

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

📜 Credits

Keywords

aws

FAQs

Package last updated on 27 Apr 2024

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