A collection of AWS icons for use with Mermaid.js diagrams.
npm install @valravnx/aws-icons
import mermaid from 'mermaid';
import { icons } from '@valravnx/aws-icons';
// Register the AWS icon pack
mermaid.registerIconPacks([
{
name: 'aws',
icons,
},
]);
Then in your Mermaid diagrams:
graph TD
A[aws:lambda Lambda Function]
B[aws:s3 S3 Bucket]
A --> B
All AWS service icons are available with the prefix aws:
. For example:
- aws:lambda
- aws:s3
- aws:ec2
- aws:dynamodb
This project is licensed under the MIT License. AWS icons are trademarks of Amazon Web Services, Inc.