Thank you for your interest in contributing to theSVG! This guide will help you get started.
The easiest way to contribute is to submit a new brand icon:
- Go to thesvg.org/submit
- Upload the SVG file
- Fill in the brand name, category, and website URL
- Submit for review
Requirements for icon submissions:
- SVG format only (no PNG, JPG, etc.)
- Must be an official brand logo or icon
- Must have a valid
viewBoxattribute - File size under 50KB
- No embedded
<script>tags, event handlers, orjavascript:URIs - No raster images embedded in the SVG
- Preferably optimized with SVGO
- Incorrect icon data - wrong brand name, color, category, or URL
- Missing variants - brand has a dark/light/mono version we don't have
- Broken icon - SVG doesn't render correctly
- Package bug - import errors, TypeScript issues, build problems
Use the appropriate issue template.
- Fork the repository
- Create a feature branch:
git checkout -b feat/my-feature - Make your changes
- Run the build:
cd packages/icons && npm run build - Run audits:
npm run audit && npm run validate - Commit with conventional commits:
feat: add new feature - Open a pull request
# Clone the repo
git clone https://github.com/glincker/thesvg.git
cd thesvg
# Install dependencies
pnpm install
# Run the website
pnpm dev
# Build the icon package
cd packages/icons
npm run build
npm run audit
npm run validateWe use conventional commits:
feat: add new feature- triggers a minor releasefix: fix a bug- triggers a patch releasefeat!: breaking change- triggers a major releasedocs: update readme- no releasechore: maintenance- no release
theSVG organizes icons into collections. Each icon belongs to exactly one collection:
| Collection | Slug prefix | Source | License |
|---|---|---|---|
| Brand Icons | (none) | Community submissions | Per-brand |
| AWS Architecture | aws- |
Official AWS icon package | CC BY-ND 2.0 |
| GCP (planned) | gcp- |
Google Cloud icons | TBD |
| Azure (planned) | azure- |
Microsoft Azure icons | TBD |
Use thesvg.org/submit or open a PR. Brand icons go in public/icons/{slug}/ and get "collection": "brands" in icons.json.
Architecture icons are imported in bulk from official icon packages using scripts in scripts/. These icons are not modified -- all SVG files (including size variants like 16/32/64px) are provided by the official package and copied verbatim to comply with their respective licenses. Do not submit individual architecture icons through the submit form.
To update an architecture collection (e.g., when AWS releases a new quarterly icon set):
- Download the latest official icon package
- Run the import script:
npx tsx scripts/import-aws-icons.ts - Verify the import: check
src/data/icons.jsonandpublic/icons/aws-*/ - Open a PR with the updated icons
Icons are stored in src/data/icons.json. Each entry:
{
"slug": "github",
"title": "GitHub",
"aliases": ["gh"],
"hex": "181717",
"categories": ["DevTool", "VCS"],
"variants": {
"default": "/icons/github/default.svg",
"mono": "/icons/github/mono.svg"
},
"license": "MIT",
"url": "https://github.com",
"collection": "brands",
"dateAdded": "2026-03-07"
}For architecture icons, additional fields:
{
"slug": "aws-amazon-s3",
"title": "Amazon S3",
"collection": "aws",
"collectionVersion": "2026-Q1",
"collectionMeta": {
"type": "service",
"parent": "Storage"
}
}SVG files live in public/icons/{slug}/{variant}.svg.
- We only include official brand assets - no fan-made or modified logos
- Icons should represent the brand accurately as it appears in official materials
- Do not modify brand colors unless providing a mono variant
- Check the brand's public guidelines or press kit before submitting
- If a brand has explicit restrictions on third-party use, note it in the PR
Some companies actively enforce trademark restrictions on third-party icon distribution. Before submitting, check whether the brand allows it. If you are unsure, submit anyway and we will review.
If a brand owner requests removal, we comply within 24 hours. See our Trademark Policy for details.
By contributing, you agree that your contributions will be licensed under the project's MIT License.
All brand icons remain the property of their respective owners. Icons are provided for identification and development purposes only, consistent with nominative fair use of trademarks. thesvg is not affiliated with, endorsed by, or sponsored by any of the brands whose icons appear in our library.
AWS Architecture Icons are distributed unmodified under CC BY-ND 2.0. Amazon Web Services and all related marks are trademarks of Amazon.com, Inc.
For trademark concerns, see TRADEMARK.md or contact support@glincker.com.