A curated collection of logos, icons, and graphics for our team projects. All assets are automatically exported from Figma in both PNG and SVG formats, optimized for web and app usage.
📦 team-graphics-library
├── 📊 diagrams/ # Charts, flowcharts, and data visualizations
├── 🐝 ebees/ # All versions of eBee mascot
├── ⤴️ figma-plugins/github-exporter/ # Figma plugin source files
├── ❤️ icons/ # UI icons and symbols
├── 🎨 illustrations/ # Custom illustrations and artwork
├── 🍏 logos/ # Brand logos and marks
├── 📌 stickers/ # Fun stickers and decorative elements
├── 📄 templates/ # Design templates and layouts
└── 📋 metadata.json # Asset database with URLs and metadata
// Fetch all assets
const response = await fetch('https://raw.githubusercontent.com/vadim-ux/team-graphics-library-official/main/metadata.json');
const library = await response.json();
// Filter assets with SVG versions
const svgAssets = library.assets.filter(asset => asset.hasSvg);- Figma Source: Assets Store (Internal)
- Export Tool: Custom Figma Plugin with PNG + SVG support
- Auto-sync: ✅ Enabled
# PNG versions (all assets)
https://raw.githubusercontent.com/vadim-ux/team-graphics-library-official/main/logos/docker.png
https://raw.githubusercontent.com/vadim-ux/team-graphics-library-official/main/icons/search.png
# SVG versions (select assets)
https://raw.githubusercontent.com/vadim-ux/team-graphics-library-official/main/logos/docker.svg
https://raw.githubusercontent.com/vadim-ux/team-graphics-library-official/main/icons/search.svg
{
"name": "Team Graphics Library",
"version": "1.0.0",
"totalAssets": 450,
"categories": ["diagrams", "ebees", "icons", "illustrations", "logos", "stickers", "templates"],
"assets": [
{
"id": "logos-docker",
"name": "docker",
"category": "logos",
"url": "https://raw.githubusercontent.com/.../logos/docker.png",
"hasSvg": true,
"svgUrl": "https://raw.githubusercontent.com/.../logos/docker.svg",
"size": "1024x1024",
"lastUpdated": "2025-06-13"
}
]
}- Raycast PNG Extension - Search and access PNG assets
- Raycast SVG Extension - Search and copy SVG code instantly
- Figma Plugin - Auto-export from design files in both formats
- Web Apps - Direct API access via metadata.json
Category / Asset Name
├── diagrams / user-flow
├── ebees / happy-version
├── icons / search
├── illustrations / hero-image
├── logos / company-name
├── stickers / rocket
└── templates / email-header
- Resolution: 1024x1024px (max dimension)
- Format: PNG with transparency
- Optimization: Web-ready
- Use cases: Presentations, social media, raster graphics tools
- Format: Scalable Vector Graphics
- Optimization: Clean, minimal code
- Use cases: Web development, vector editing, high-resolution displays
- Availability: Select assets (marked with
"hasSvg": true)
- Design → Create/update assets in Figma
- Export PNG → Use "Export PNG to GitHub" in Figma plugin
- Deploy → PNG assets automatically available via URLs
- Access → Use Raycast PNG extension or direct API calls
- Design → Ensure vector-based artwork in Figma
- Export PNG → First export PNG version (required)
- Export SVG → Use "Export SVG to GitHub" in Figma plugin
- Deploy → SVG assets available alongside PNG versions
- Access → Use Raycast SVG extension for instant code copying
- Total Assets: Auto-updated via metadata.json
- PNG Assets: All graphics (100% coverage)
- SVG Assets: Select vector graphics (growing library)
- Categories: 7 organized categories
- Last Updated: Auto-updated via export tool
- Maintained by: Design Team
- Add/update assets in the main Figma file using proper naming:
category / asset-name - Use the export plugin "Export PNG to GitHub" to create the base asset
- Optionally use "Export SVG to GitHub" for vector versions
- Assets will be automatically available in the repository
diagrams- Charts, flowcharts, data visualizationsebees- eBee mascot variationsicons- UI icons and symbolsillustrations- Custom artwork and illustrationslogos- Brand logos and marksstickers- Decorative elements and fun graphicstemplates- Design templates and layouts
category/
├── asset-name.png # PNG version (always present)
└── asset-name.svg # SVG version (optional)
- All Assets:
metadata.json - PNG Access:
{category}/{asset-name}.png - SVG Access:
{category}/{asset-name}.svg(ifhasSvg: true)
Made with ❤️ by the Design Team | Powered by Figma + GitHub + Raycast