All Icons

If you don't see your icon, see the section adding new icons for instructions on adding a new icon. Remember, icons are a separate package; installed via npm install @versionone/icons

Add New
Agility
Airplane
Alert
Analytics
Artifact
Asset
Assign To User
Attachments
Avatar
Board
Broken Image
Bucket
Budget
Bulb
Calendar
Center Target
Change
Changelog
Changing Action
Check
Chevron
Close
Cloud
Community Support
Compass
Configuration
Construction
Database
Devops
Display Fields
Edit
Editor
Environment
Example
Exit
Expand Chevrons
File Folder
Filled Star
Filter
Forecast
Gauge
Gear
Global Registry
Heirarchy
Help
Help Line
Hide
Home
Hourglass
Import
Info
Integrations
Key
Keyhole
Left Arrow
List Types
Loading Spin
Location
Logout
Mail
Mail Letter
Mailbox
Milestone
More Menu Vertsvg
Outlined Star
Perspectives
Pipeline Group
Pipeline
Pipeline Instance
Pipeline Pending
Plugin
Portfolio
Preferences
Product
Progressions
Project
Project Off
Project Selector Circle
Project Selector
Push Notifications
Race
Recycle
Release
Request
Right Arrow
Roadmap
Rooms
Saved View
Scope
Security
Show
Sitemap
Skip Row
Snapshot View
Strategic Theme
Tag
Target
Tasks
Team
Timeline
Timer
Tour
Unplanned
Upload
Value Stream
Video
Webhook
Zoom In
Zoom Out
<SpacedGroup xs={4}>
    {Object.keys(AllIcons)
      .filter(name => name !== 'BaseIcon' && name !== '__esModule')
      .map(iconKey => {
        const Icon = AllIcons[iconKey]
        const anchor = <Icon color={palette.gunmetal} />
        return (
          <Tooltip key={iconKey} anchor={anchor}>
            <SpacedGroup xs={4}>
              <span>{iconKey}
            </SpacedGroup>
          </Tooltip>
        )
      })}
  </SpacedGroup>
</Playground>