Skip to main content

Using icons

latest

Arc provides icons in multiple formats to suit varying project requirements.

Importing icons

There are currently two brands of icon sets in Arc. The import format is the same between the two, here is an example.

// BT example
import { BtIconInfo } from "@arc-ui/icons/BtIconInfo";

// EE example
import { EeIconChevronDown } from "@arc-ui/icons/EeIconChevronDown";
info

Note that each icon is imported individually. This is so you only include the icons that are needed by your project. You can import from the main bundle, and as they are named exports of strings, most bundlers should be able to tree shake any unused icons. Please ensure you monitor you're bundle sizes if importing this way, and notify a member of the Arc team if you notice unusually large bundles.

Using the Icon component

The arc icons are intended to be used with the icon component, which will allow you to set the color and size easily. All you need to do is pass the imported icon as a prop like so.

import { BtIconInfo } from "@arc-ui/icons/BtIconInfo";
import { Icon } from "@arc-ui/components/Icon";

<Icon icon={BtIconInfo} size={40} />;

Finding icons you can use

You can see all the available icons here. The name at the bottom of the icon is both the name of the React icon and the path to import it.

import { <the-icon-you-want> } from "@arc-ui/icons/<the-icon-you-want>";

For example:

import { BtIconCake } from "@arc-ui/icons/BtIconCake";
import { BtIconWiFi } from "@arc-ui/icons/BtIconWiFi";
import { BtIconInfo } from "@arc-ui/icons/BtIconInfo";
import { BtIconPhone } from "@arc-ui/icons/BtIconPhone";
import { BtIconLaptop } from "@arc-ui/icons/BtIconLaptop";
import { BtIconMobile } from "@arc-ui/icons/BtIconMobile";

Custom Icons

If you wish your own icons with the Icon component, there are numerous ways to do this. All the Icon component needs is a url for the svg you wish to use. You can provide them as a data uri (This is the method the @arc-ui/icons package uses), or a url which can be resolved.

NextJs

import { Icon } from "@arc-ui/components/Icon";

import customSvg from "@/assets/custom.svg";

export default function Page() {
return <Icon size={40} icon={customSvg.src} />;
}

Data URI

You can use something like mini-svg-data-uri to make this process easier.

import svgToMiniDataURI from "mini-svg-data-uri";
import { Icon } from "@arc-ui/components/Icon";

const customSvg = `
<svg xmlns='http://www.w3.org/2000/svg' viewBox="0 0 32 32">
<circle cx="16" cy="16" r="16" fill="currentColor"></circle>
</svg>
`;

export default function Page() {
return <Icon size={40} icon={svgToMiniDataURI(customSvg)} />;
}

Webpack / Vite

caution

Webpack doesn't support file imports out of the box, we recommend using file-loader. There are other loaders you can choose from depending on your project needs,

import { Icon } from "@arc-ui/components/Icon";

import customSvg from "./custom.svg";

export default function Page() {
return <Icon size={40} icon={customSvg} />;
}

CSS

The icons are also available as CSS custom properties. To use them first import them into your project. Your bundler must be setup to handle css files (NextJs projects will work out of the box).

You can import them from @arc-ui/icons/lib/tokens-bt.css

Example icon

You can then reference them in your css files. To do so you will need apply them as mask images, here is an example

background-color: var(--colors-border-default);
display: block;
height: 40px;
mask-image: var(--bt-icon-info);
width: 40px;

SCSS

Using the SCSS icons is a similar process but the advantage over css custom properties, is that the variables wont be included in your final bundle.

You can import them from @arc-ui/icons/lib/tokens-bt.scss

background-color: $colors-border-default;
display: block;
height: 40px;
mask-image: $bt-icon-info;
width: 40px;

Available icons

Arc icons

  • ArcIconArc
  • ArcIconEclipse
  • ArcIconPlay
  • ArcIconSocialYouTube
  • ArcIconSocialFacebook
  • ArcIconSocialFacebookFill
  • ArcIconSocialInstagram
  • ArcIconSocialLinkedin
  • ArcIconSocialLinkedinFill
  • ArcIconSocialTwitter
  • ArcIconSocialWhatsapp
  • ArcIconSocialWhatsappFill
  • ArcIconSocialX
  • ArcIconWarn

BT outline icons

  • BtIcon3G
  • BtIcon4G
  • BtIcon5G
  • BtIconAccessibility
  • BtIconAdd
  • BtIconAlert
  • BtIconAlertTriangle
  • BtIconAnswerPoint
  • BtIconArchitecture
  • BtIconArchive
  • BtIconArrowAltDown
  • BtIconArrowAltLeft
  • BtIconArrowAltLeftRight
  • BtIconArrowAltRight
  • BtIconArrowAltUp
  • BtIconArrowDown
  • BtIconArrowLeft
  • BtIconArrowLeftRight
  • BtIconArrowRight
  • BtIconArrowUp
  • BtIconAttachment
  • BtIconAttachmentAlt
  • BtIconBag
  • BtIconBasket
  • BtIconBin
  • BtIconBlockedNumber
  • BtIconBoat
  • BtIconBroadband
  • BtIconBuilding
  • BtIconBurgerMenu
  • BtIconCake
  • BtIconCalendar
  • BtIconCalendarAccepted
  • BtIconCalendarAddEvent
  • BtIconCalendarPaymentPlan
  • BtIconCalendarPaymentPlanAlt
  • BtIconCalendarSpecialDate
  • BtIconCallRouting
  • BtIconCallerId
  • BtIconChat
  • BtIconChatMessage
  • BtIconChatTyping
  • BtIconChevronDown
  • BtIconChevronDown2Px
  • BtIconChevronDownMid
  • BtIconChevronLeft
  • BtIconChevronLeft2Px
  • BtIconChevronLeftMid
  • BtIconChevronRight
  • BtIconChevronRight2Px
  • BtIconChevronRightMid
  • BtIconChevronUp
  • BtIconChevronUp2Px
  • BtIconChevronUpMid
  • BtIconCircle
  • BtIconClipboard
  • BtIconClipboardTick
  • BtIconClock
  • BtIconCloud
  • BtIconCloudAlert
  • BtIconCloudDesktop
  • BtIconCloudLink
  • BtIconCloudMeeting
  • BtIconCloudPhone
  • BtIconCloudSecurity
  • BtIconCloudUpload
  • BtIconCloudUser
  • BtIconCollapse
  • BtIconCompare
  • BtIconComputerChip
  • BtIconConnectedCare
  • BtIconContactDetails
  • BtIconContactNoDetails
  • BtIconContacts
  • BtIconCreditCard
  • BtIconCross
  • BtIconCrossAlt
  • BtIconCrossAlt2Px
  • BtIconCrossAlt2PxExtended
  • BtIconDashboard
  • BtIconDeposit
  • BtIconDesign
  • BtIconDeskPhone
  • BtIconDetails
  • BtIconDetailsGroup
  • BtIconDexterity
  • BtIconDialPad
  • BtIconDialPadWithHand
  • BtIconDialledNumberDestination
  • BtIconDigitalCollaboration
  • BtIconDisability
  • BtIconDiscount
  • BtIconDivertOnBusy
  • BtIconDocument
  • BtIconDocumentAndPencil
  • BtIconDocumentArticle
  • BtIconDocumentBills
  • BtIconDocumentDownload
  • BtIconDocumentPdf
  • BtIconDocumentWithCopy
  • BtIconDocumentWithCopyCrossedOut
  • BtIconDrone
  • BtIconDynamicCollaboration
  • BtIconEducation
  • BtIconEmailRead
  • BtIconEmailUnread
  • BtIconEngaged
  • BtIconEthernet
  • BtIconFaceHappy
  • BtIconFaceNeutral
  • BtIconFaceSad
  • BtIconFaceVeryHappy
  • BtIconFirstAid
  • BtIconFirstMid
  • BtIconFolder
  • BtIconGaming
  • BtIconGenderFemale
  • BtIconGenderFemaleAndMale
  • BtIconGenderMale
  • BtIconGenderNeutral
  • BtIconGift
  • BtIconGlobalConnectivity
  • BtIconGlobe
  • BtIconGlossary
  • BtIconGondola
  • BtIconGraphBarAndPlot
  • BtIconGraphBarChart
  • BtIconGraphDown
  • BtIconGraphUp
  • BtIconGraphUpAndDown
  • BtIconHeadset
  • BtIconHeart
  • BtIconHeartBroken
  • BtIconHeartCare
  • BtIconHoldingHeart
  • BtIconHome
  • BtIconHomeTechExpert
  • BtIconHometown
  • BtIconHub
  • BtIconHubOld
  • BtIconHubAndMobile
  • BtIconIp
  • BtIconIPv6
  • BtIconIdea
  • BtIconInfo
  • BtIconJson
  • BtIconJigsaw
  • BtIconJourney
  • BtIconKebab
  • BtIconKey
  • BtIconKnifeAndFork
  • BtIconLan
  • BtIconLaptop
  • BtIconLaptopAndMobile
  • BtIconLaptopConnectAndShare
  • BtIconLaptopDetection
  • BtIconLaptopSecure
  • BtIconLaptopUsers
  • BtIconLaptopVideoConference
  • BtIconLastMid
  • BtIconLayoutGridLarge
  • BtIconLayoutGridMedium
  • BtIconLayoutGridSmall
  • BtIconLayoutRowsLarge
  • BtIconLayoutRowsMedium
  • BtIconLayoutRowsSmall
  • BtIconLeadership
  • BtIconLink
  • BtIconLiteracyNumeracy
  • BtIconLocation
  • BtIconLocked
  • BtIconLogout
  • BtIconMeatball
  • BtIconMedal
  • BtIconMedalWithStar
  • BtIconMeetingSpace
  • BtIconMegaphone
  • BtIconMicrophone
  • BtIconMobile
  • BtIconMobileTransferCall
  • BtIconMobileWithHand
  • BtIconMobility
  • BtIconMoney
  • BtIconMonitor
  • BtIconMonitorTick
  • BtIconMoon
  • BtIconMouse
  • BtIconNaming
  • BtIconNewWindow
  • BtIconNoHearing
  • BtIconNoHearingOrSpeech
  • BtIconNoSpeech
  • BtIconNoView
  • BtIconNotification
  • BtIconPaperTowel
  • BtIconPassword
  • BtIconPause
  • BtIconPauseAlt
  • BtIconPaymentMethod
  • BtIconPayphone
  • BtIconPhone
  • BtIconPhoneBarred
  • BtIconPicture
  • BtIconPin
  • BtIconPinAlt
  • BtIconPlane
  • BtIconPlanning
  • BtIconPlant
  • BtIconPlay
  • BtIconPlayAlt
  • BtIconPodcast
  • BtIconPresentation
  • BtIconPrice
  • BtIconPrinter
  • BtIconProcess
  • BtIconProcessMining
  • BtIconProcessRoles
  • BtIconProportionalCallDistribution
  • BtIconQuestion
  • BtIconRecycling
  • BtIconRefresh
  • BtIconRefund
  • BtIconRelease
  • BtIconResolution4K
  • BtIconResolutionHd
  • BtIconResolutionSd
  • BtIconScale
  • BtIconSearch
  • BtIconServer
  • BtIconSettings
  • BtIconSettingsAlt
  • BtIconSettingsAlt2
  • BtIconShield
  • BtIconShieldAdd
  • BtIconShieldQuestionMark
  • BtIconShieldSecurity
  • BtIconShieldTick
  • BtIconShip
  • BtIconSignal
  • BtIconSignalStrength0
  • BtIconSignalStrength1
  • BtIconSignalStrength2
  • BtIconSignalStrength3
  • BtIconSignature
  • BtIconSignpost
  • BtIconSim
  • BtIconSimple
  • BtIconSkiing
  • BtIconSkis
  • BtIconSnowboarding
  • BtIconSpanner
  • BtIconSpeakerFullVolume
  • BtIconSpeakerHalfVolume
  • BtIconSpeakerLowVolume
  • BtIconSpeakerMute
  • BtIconSpeedFaster
  • BtIconSpeedFastest
  • BtIconSpeedGuarantee
  • BtIconSpeedSlow
  • BtIconSportFootball
  • BtIconStar
  • BtIconStop
  • BtIconStopAlt
  • BtIconSuitcase
  • BtIconSun
  • BtIconSwitch
  • BtIconTv
  • BtIconTvAerial
  • BtIconTvAndHubAndPhone
  • BtIconTvAndHub
  • BtIconTablet
  • BtIconTabletWithKeyboard
  • BtIconTag
  • BtIconTaxonomy
  • BtIconTechBar
  • BtIconTelemark
  • BtIconThumbsDown
  • BtIconThumbsUp
  • BtIconTick
  • BtIconTickAlt
  • BtIconTickAlt2Px
  • BtIconTickVariant
  • BtIconTree1
  • BtIconTree2
  • BtIconTrophy
  • BtIconUk
  • BtIconUkHotspots
  • BtIconUsb
  • BtIconUnlocked
  • BtIconUser
  • BtIconUserAdd
  • BtIconUserCloud
  • BtIconUserDuplicateProfile
  • BtIconUserGroups
  • BtIconUserParentAndChild
  • BtIconUserWithQuestionmark
  • BtIconVan
  • BtIconView
  • BtIconVirus
  • BtIconWholeHomeWifi
  • BtIconWiFi
  • BtIconWizard
  • BtIconWorkstation
  • BtIconsChevronLeftMid
  • BtIconsChevronRightMid

BT Fill icons

  • BtIcon3GFill
  • BtIcon4GFill
  • BtIcon5GFill
  • BtIconAccessibilityFill
  • BtIconAddFill
  • BtIconAlertFill
  • BtIconAlertTriangleFill
  • BtIconAnswerPointFill
  • BtIconArchitectureFill
  • BtIconArchiveFill
  • BtIconArrowAltDownFill
  • BtIconArrowAltLeftFill
  • BtIconArrowAltLeftRightFill
  • BtIconArrowAltRightFill
  • BtIconArrowAltUpFill
  • BtIconArrowDownFill
  • BtIconArrowLeftFill
  • BtIconArrowLeftRightFill
  • BtIconArrowRightFill
  • BtIconArrowUpFill
  • BtIconAttachmentAltFill
  • BtIconAttachmentFill
  • BtIconBagFill
  • BtIconBasketFill
  • BtIconBinFill
  • BtIconBlockedNumberFill
  • BtIconBoatFill
  • BtIconBroadbandFill
  • BtIconBuildingFill
  • BtIconBurgerMenuFill
  • BtIconCakeFill
  • BtIconCalendarAcceptedFill
  • BtIconCalendarAddEventFill
  • BtIconCalendarFill
  • BtIconCalendarPaymentPlanAltFill
  • BtIconCalendarPaymentPlanFill
  • BtIconCalendarSpecialDateFill
  • BtIconCallRoutingFill
  • BtIconCallerIdFill
  • BtIconChatFill
  • BtIconChatMessageFill
  • BtIconChatTypingFill
  • BtIconClipboardFill
  • BtIconClipboardTickFill
  • BtIconClockFill
  • BtIconCloudAlertFill
  • BtIconCloudDesktopFill
  • BtIconCloudFill
  • BtIconCloudLinkFill
  • BtIconCloudMeetingFill
  • BtIconCloudPhoneFill
  • BtIconCloudSecurityFill
  • BtIconCloudUploadFill
  • BtIconCloudUserFill
  • BtIconCollapseFill
  • BtIconCompareFill
  • BtIconComputerChipFill
  • BtIconConnectedCareFill
  • BtIconContactDetailsFill
  • BtIconContactNoDetailsFill
  • BtIconContactsFill
  • BtIconCreditCardFill
  • BtIconCrossAlt2PxExtendedFill
  • BtIconCrossAlt2PxFill
  • BtIconCrossAltFill
  • BtIconCrossFill
  • BtIconDashboardFill
  • BtIconDepositFill
  • BtIconDesignFill
  • BtIconDeskPhoneFill
  • BtIconDetailsFill
  • BtIconDetailsGroupFill
  • BtIconDexterityFill
  • BtIconDialPadFill
  • BtIconDialPadWithHandFill
  • BtIconDialledNumberDestinationFill
  • BtIconDigitalCollaborationFill
  • BtIconDisabilityFill
  • BtIconDiscountFill
  • BtIconDivertOnBusyFill
  • BtIconDocumentAndPencilFill
  • BtIconDocumentArticleFill
  • BtIconDocumentBillsFill
  • BtIconDocumentDownloadFill
  • BtIconDocumentFill
  • BtIconDocumentPdfFill
  • BtIconDocumentWithCopyCrossedOutFill
  • BtIconDocumentWithCopyFill
  • BtIconDroneFill
  • BtIconDynamicCollaborationFill
  • BtIconEducationFill
  • BtIconEmailReadFill
  • BtIconEmailUnreadFill
  • BtIconEngagedFill
  • BtIconEthernetFill
  • BtIconFaceHappyFill
  • BtIconFaceNeutralFill
  • BtIconFaceSadFill
  • BtIconFaceVeryHappyFill
  • BtIconFirstAidFill
  • BtIconFolderFill
  • BtIconGamingFill
  • BtIconGenderFemaleAndMaleFill
  • BtIconGenderFemaleFill
  • BtIconGenderMaleFill
  • BtIconGenderNeutralFill
  • BtIconGiftFill
  • BtIconGlobalConnectivityFill
  • BtIconGlobeFill
  • BtIconGlossaryFill
  • BtIconGondolaFill
  • BtIconGraphBarAndPlotFill
  • BtIconGraphBarChartFill
  • BtIconGraphDownFill
  • BtIconGraphUpAndDownFill
  • BtIconGraphUpFill
  • BtIconHeadsetFill
  • BtIconHeartBrokenFill
  • BtIconHeartCareFill
  • BtIconHeartFill
  • BtIconHoldingHeartFill
  • BtIconHomeFill
  • BtIconHomeTechExpertFill
  • BtIconHometownFill
  • BtIconHubAndMobileFill
  • BtIconHubFill
  • BtIconHubOldFill
  • BtIconIpFill
  • BtIconIPv6Fill
  • BtIconIdeaFill
  • BtIconInfoFill
  • BtIconJsonFill
  • BtIconJigsawFill
  • BtIconJourneyFill
  • BtIconKebabFill
  • BtIconKeyFill
  • BtIconKnifeAndForkFill
  • BtIconLanFill
  • BtIconLaptopAndMobileFill
  • BtIconLaptopConnectAndShareFill
  • BtIconLaptopDetectionFill
  • BtIconLaptopFill
  • BtIconLaptopSecureFill
  • BtIconLaptopVideoConferenceFill
  • BtIconLaptopUsersFill
  • BtIconLayoutGridLargeFill
  • BtIconLayoutGridMediumFill
  • BtIconLayoutGridSmallFill
  • BtIconLayoutRowsLargeFill
  • BtIconLayoutRowsMediumFill
  • BtIconLayoutRowsSmallFill
  • BtIconLeadershipFill
  • BtIconLinkFill
  • BtIconLiteracyNumeracyFill
  • BtIconLocationFill
  • BtIconLockedFill
  • BtIconLogoutFill
  • BtIconMeatballFill
  • BtIconMedalFill
  • BtIconMedalWithStarFill
  • BtIconMeetingSpaceFill
  • BtIconMegaphoneFill
  • BtIconMicrophoneFill
  • BtIconMobileFill
  • BtIconMobileTransferCallFill
  • BtIconMobileWithHandFill
  • BtIconMobilityFill
  • BtIconMoneyFill
  • BtIconMonitorFill
  • BtIconMonitorTickFill
  • BtIconMoonFill
  • BtIconMouseFill
  • BtIconNamingFill
  • BtIconNewWindowFill
  • BtIconNoHearingFill
  • BtIconNoHearingOrSpeechFill
  • BtIconNoSpeechFill
  • BtIconNoViewFill
  • BtIconNotificationFill
  • BtIconPaperTowelFill
  • BtIconPasswordFIll
  • BtIconPauseAltFill
  • BtIconPauseFill
  • BtIconPaymentMethodFill
  • BtIconPayphoneFill
  • BtIconPhoneBarredFill
  • BtIconPhoneFill
  • BtIconPictureFill
  • BtIconPinAltFill
  • BtIconPinFill
  • BtIconPlaneFill
  • BtIconPlanningFill
  • BtIconPlantFill
  • BtIconPlayAltFill
  • BtIconPlayFill
  • BtIconPodcastFill
  • BtIconPresentationFill
  • BtIconPriceFill
  • BtIconPrinterFill
  • BtIconProcessFill
  • BtIconProcessMiningFill
  • BtIconProcessRolesFill
  • BtIconProportionalCallDistributionFill
  • BtIconQuestionFill
  • BtIconRecyclingFill
  • BtIconRefreshFill
  • BtIconRefundFill
  • BtIconReleaseFill
  • BtIconResolution4KFill
  • BtIconResolutionHdFill
  • BtIconResolutionSdFill
  • BtIconScaleFill
  • BtIconSearchFill
  • BtIconServerFill
  • BtIconSettingsAlt2Fill
  • BtIconSettingsAltFill
  • BtIconSettingsFill
  • BtIconShieldAddFill
  • BtIconShieldFill
  • BtIconShieldQuestionMarkFIll
  • BtIconShieldSecurityFill
  • BtIconShieldTickFill
  • BtIconShipFill
  • BtIconSignalFill
  • BtIconSignatureFill
  • BtIconSignpostFill
  • BtIconSimFill
  • BtIconSimpleFill
  • BtIconSkiingFill
  • BtIconSkisFill
  • BtIconSnowboardingFill
  • BtIconSpannerFill
  • BtIconSpeakerFullVolumeFill
  • BtIconSpeakerHalfVolumeFill
  • BtIconSpeakerLowVolumeFill
  • BtIconSpeakerMuteFill
  • BtIconSpeedFasterFill
  • BtIconSpeedFastestFill
  • BtIconSpeedGuaranteeFill
  • BtIconSpeedSlowFill
  • BtIconSportFootballFill
  • BtIconStarFill
  • BtIconStopFill
  • BtIconStopAltFill
  • BtIconSuitcaseFill
  • BtIconSunFill
  • BtIconSwitchFill
  • BtIconTvAerialFill
  • BtIconTvAndHubAndPhoneFill
  • BtIconTvFill
  • BtIconTvAndHubFill
  • BtIconTabletFill
  • BtIconTabletWithKeyboardFill
  • BtIconTagFill
  • BtIconTaxonomyFill
  • BtIconTechBarFill
  • BtIconTelemarkFill
  • BtIconThumbsDownFill
  • BtIconThumbsUpFill
  • BtIconTickAlt2PxFill
  • BtIconTickFill
  • BtIconTickVariantFill
  • BtIconTree1Fill
  • BtIconTree2Fill
  • BtIconTrophyFill
  • BtIconUkFill
  • BtIconUkHotspotsFill
  • BtIconUsbFill
  • BtIconUnlockedFill
  • BtIconUserAddFill
  • BtIconUserCloudFill
  • BtIconUserDuplicateProfileFill
  • BtIconUserFill
  • BtIconUserGroupsFill
  • BtIconUserParentAndChildFill
  • BtIconUserWithQuestionmarkFill
  • BtIconVanFill
  • BtIconViewFill
  • BtIconVirusFill
  • BtIconWholeHomeWifiFill
  • BtIconWiFiFill
  • BtIconWizardFill
  • BtIconWorkstationFill

EE outline icons

  • EeIcon18Plus
  • EeIcon360
  • EeIcon3G
  • EeIcon3GPin
  • EeIcon4G
  • EeIcon4GPin
  • EeIcon4KAndHd
  • EeIcon5G
  • EeIcon5GPin
  • EeIconAccessibility
  • EeIconAdBlocker
  • EeIconAddOn
  • EeIconAds
  • EeIconAlarmSystem
  • EeIconAlert
  • EeIconAlertTriangle
  • EeIconAnimation
  • EeIconAppAdviser
  • EeIconAppSecurity
  • EeIconArchive
  • EeIconArrowAltDown
  • EeIconArrowAltLeft
  • EeIconArrowAltRight
  • EeIconArrowAltUp
  • EeIconArrowDown
  • EeIconArrowLeft
  • EeIconArrowRight
  • EeIconArrowUp
  • EeIconAttention
  • EeIconBabyMonitor
  • EeIconBabyMonitorSmart
  • EeIconBadWeather
  • EeIconBag
  • EeIconBasket
  • EeIconBasket2
  • EeIconBattery
  • EeIconBattery2
  • EeIconBill
  • EeIconBin
  • EeIconBlog
  • EeIconBluetooth
  • EeIconBook
  • EeIconBookmark
  • EeIconBoost
  • EeIconBox
  • EeIconBox2
  • EeIconBriefcase
  • EeIconBroadband
  • EeIconBroadband2
  • EeIconBrowse
  • EeIconBrowser
  • EeIconCalendar
  • EeIconCalendarSpecialDate
  • EeIconCallCentre
  • EeIconCamera
  • EeIconCancel
  • EeIconCar
  • EeIconChat
  • EeIconChatMessage
  • EeIconChatTyping
  • EeIconChevronDown
  • EeIconChevronDown2Px
  • EeIconChevronDown4
  • EeIconChevronDownMid
  • EeIconChevronLeft
  • EeIconChevronLeft2Px
  • EeIconChevronLeftMid
  • EeIconChevronRight
  • EeIconChevronRight2Px
  • EeIconChevronRightMid
  • EeIconChevronUp
  • EeIconChevronUp2Px
  • EeIconClock
  • EeIconCloud
  • EeIconCloudUpload
  • EeIconCoatHanger
  • EeIconCommunity
  • EeIconComputerChip
  • EeIconContacts
  • EeIconContactsAlt
  • EeIconCopy
  • EeIconCreditCard
  • EeIconCreditMonitoring
  • EeIconCross
  • EeIconCross2
  • EeIconCrossAlt
  • EeIconDvr
  • EeIconData
  • EeIconDataAlt
  • EeIconDataCap
  • EeIconDataCapAlt
  • EeIconDataCapReserve
  • EeIconDataRefresh
  • EeIconDataRefreshAlt
  • EeIconDataRollover
  • EeIconDetails
  • EeIconDetectingMotion
  • EeIconDevice
  • EeIconDeviceHelp
  • EeIconDeviceInsurance
  • EeIconDeviceSecurity
  • EeIconDeviceSecurity2
  • EeIconDevices
  • EeIconDirectDebit
  • EeIconDisability
  • EeIconDisabilityAwareness
  • EeIconDishwasher
  • EeIconDocument
  • EeIconDocumentBills
  • EeIconDocumentDownload
  • EeIconDocumentWithCopy
  • EeIconDocuments
  • EeIconDoorbell
  • EeIconDoorlock
  • EeIconDrone
  • EeIconEar
  • EeIconEmailRead
  • EeIconEmailUnread
  • EeIconEnergyManagement
  • EeIconEngaged
  • EeIconEnvelope
  • EeIconEreader
  • EeIconExternalLink
  • EeIconFan
  • EeIconFastForward
  • EeIconFilm
  • EeIconFilter
  • EeIconFilters
  • EeIconFingerprint
  • EeIconFitness
  • EeIconFlame
  • EeIconFlexTv
  • EeIconFridge
  • EeIconGps1
  • EeIconGps
  • EeIconGames
  • EeIconGaming
  • EeIconGamingPass
  • EeIconGarageOpening
  • EeIconGeoLocator
  • EeIconGift
  • EeIconGlobalConnectivity
  • EeIconGlobe
  • EeIconHd
  • EeIconHandGesture
  • EeIconHardDrive
  • EeIconHardDriveNas
  • EeIconHeadphones
  • EeIconHeart
  • EeIconHello
  • EeIconHelloBubble
  • EeIconHelp
  • EeIconHelpBubble
  • EeIconHelpDevice
  • EeIconHide
  • EeIconHome
  • EeIconHub
  • EeIconIdPass
  • EeIconIpCamera
  • EeIconIdea
  • EeIconInductionLoop
  • EeIconInfo
  • EeIconInfoAlt
  • EeIconInsurance
  • EeIconInternetSecurity
  • EeIconJourney
  • EeIconKettle
  • EeIconKnifeAndFork
  • EeIconLandlineFree
  • EeIconLaptop
  • EeIconLaptopVideoConference
  • EeIconLayoutGridMedium
  • EeIconLiveUpdate
  • EeIconLocation
  • EeIconLocationPin
  • EeIconLock
  • EeIconLocked
  • EeIconMemberArrived
  • EeIconMemberLeft
  • EeIconMemo
  • EeIconMemoAdd
  • EeIconMemory
  • EeIconMenu
  • EeIconMessage
  • EeIconMinimise
  • EeIconMinimise2
  • EeIconMinimiseCircle
  • EeIconMinus
  • EeIconMobile
  • EeIconMobileTransferCall
  • EeIconMobility
  • EeIconMoney
  • EeIconMonitor
  • EeIconMore
  • EeIconMoreCircle
  • EeIconMoreVertical
  • EeIconMoreVerticalCircle
  • EeIconMotionDetected
  • EeIconMultiscreen
  • EeIconMusic
  • EeIconMusicPass
  • EeIconNetwork
  • EeIconNetworkBoost
  • EeIconNewWindow
  • EeIconNext
  • EeIconNoHearing
  • EeIconNoInternet
  • EeIconNoSignal
  • EeIconNoView
  • EeIconNoWiFi
  • EeIconNoWiFi2
  • EeIconNose
  • EeIconNotification
  • EeIconPassword
  • EeIconPause
  • EeIconPayment
  • EeIconPencil
  • EeIconPets
  • EeIconPhone
  • EeIconPhoneEnd
  • EeIconPhoto
  • EeIconPicture
  • EeIconPlane
  • EeIconPlay
  • EeIconPlus
  • EeIconPower
  • EeIconPrevious
  • EeIconPrice
  • EeIconPrinter
  • EeIconPrivacy
  • EeIconPushchairAccess
  • EeIconQuestion
  • EeIconQuestionMark
  • EeIconRansomwareApp
  • EeIconRansomwareMobile
  • EeIconRansomwarePc
  • EeIconRecyclePhone
  • EeIconRecycling
  • EeIconRefresh
  • EeIconRelease
  • EeIconReserveData
  • EeIconResolution4K
  • EeIconResolutionHd
  • EeIconResolutionSd
  • EeIconRestoreSettings
  • EeIconRewind
  • EeIconRoamingPass
  • EeIconRosette
  • EeIconRouter
  • EeIconSd
  • EeIconSim
  • EeIconSms
  • EeIconSmsSecurity
  • EeIconSafeSearch
  • EeIconSatellite
  • EeIconScan
  • EeIconSearch
  • EeIconSeatingAvailable
  • EeIconSecureCalendar
  • EeIconSensitivity
  • EeIconSensor
  • EeIconSettings
  • EeIconSettingsUpdate
  • EeIconShare
  • EeIconShield
  • EeIconShop
  • EeIconShower
  • EeIconSignal
  • EeIconSignalBar
  • EeIconSignalStrength0
  • EeIconSignalStrength0Alt
  • EeIconSignalStrength1
  • EeIconSignalStrength2
  • EeIconSignalStrength31
  • EeIconSignalStrength3
  • EeIconSignalStrength4
  • EeIconSignature
  • EeIconSim2
  • EeIconSmartHome
  • EeIconSmartPlug
  • EeIconSmokeAlarm
  • EeIconSocial
  • EeIconSocialPass
  • EeIconSocialPass2
  • EeIconSpanner
  • EeIconSpeakerFullVolume
  • EeIconSpeakerMute
  • EeIconSpeechBubbles
  • EeIconSpeedDial
  • EeIconSpeedFaster
  • EeIconSport
  • EeIconSportFootball
  • EeIconStar
  • EeIconStop
  • EeIconStop2
  • EeIconStore
  • EeIconStoreFinder
  • EeIconStoreLocation
  • EeIconStreaming
  • EeIconSuitcase
  • EeIconSwap
  • EeIconTv
  • EeIconTv2
  • EeIconTvAndPhone
  • EeIconTvAndPhone2
  • EeIconTvAndTablet
  • EeIconTvAndTablet2
  • EeIconTvAndTablet3
  • EeIconTablet
  • EeIconTaste
  • EeIconTextSettings
  • EeIconTextSettings2
  • EeIconThermostat
  • EeIconThumbsDown
  • EeIconThumbsUp
  • EeIconTick
  • EeIconTick2
  • EeIconTickAlt
  • EeIconTickVariant
  • EeIconTickets
  • EeIconToilet
  • EeIconToilet2
  • EeIconTradeIn
  • EeIconTrophy
  • EeIconUsb
  • EeIconUnlimited
  • EeIconUnlocked
  • EeIconUpgrade
  • EeIconUpgrade2
  • EeIconUpload
  • EeIconUser
  • EeIconUser2
  • EeIconUserGroups
  • EeIconUserParentAndChild
  • EeIconVpn
  • EeIconVrHeadset
  • EeIconVan
  • EeIconVideo
  • EeIconVideoCall
  • EeIconVideoPass
  • EeIconView
  • EeIconViewGrid
  • EeIconViewList
  • EeIconVoiceControl
  • EeIconVolume
  • EeIconWarning
  • EeIconWatch
  • EeIconWearables
  • EeIconWebMonitoring
  • EeIconWebcam
  • EeIconWheelchairAccess
  • EeIconWiFi2
  • EeIconWiFiBoost
  • EeIconWiFiCalling
  • EeIconWiFiExcellent
  • EeIconWiFiSecurity
  • EeIconWiFiWeak
  • EeIconWifi
  • EeIconWirelessAudio
  • EeIconWorkstation
  • EeIconZoomIn
  • EeIconZoomOut
  • EeIconESim

EE fill icons

  • EeIcon360Fill
  • EeIcon3GPinFill
  • EeIcon4GPinFill
  • EeIcon4KAndHdFill
  • EeIcon5GPinFill
  • EeIconAccessibilityFill
  • EeIconAdBlockerFill
  • EeIconAddOnFill
  • EeIconAdsFill
  • EeIconAlarmSystemFill
  • EeIconAlertFill
  • EeIconAlertTriangleFill
  • EeIconAnimationFill
  • EeIconAppAdviserFill
  • EeIconAppSecurityFill
  • EeIconArchiveFill
  • EeIconArrowDownFill
  • EeIconArrowLeftFill
  • EeIconArrowRightFill
  • EeIconArrowUpFill
  • EeIconBabyMonitorFill
  • EeIconBabyMonitorSmartFill
  • EeIconBadWeatherFill
  • EeIconBagFill
  • EeIconBasket2Fill
  • EeIconBasketFill
  • EeIconBattery2Fill
  • EeIconBatteryFill
  • EeIconBlogFill
  • EeIconBookFill
  • EeIconBookmarkFill
  • EeIconBox2Fill
  • EeIconBoxFill
  • EeIconBroadband2Fill
  • EeIconBroadbandFill
  • EeIconBrowserFill
  • EeIconCalendarFill
  • EeIconCalendarSpecialDateFill
  • EeIconCallCentreFill
  • EeIconCameraFill
  • EeIconCarFill
  • EeIconChatFill
  • EeIconChatMessageFill
  • EeIconChatTypingFill
  • EeIconChevronDownFill
  • EeIconChevronLeftFill
  • EeIconChevronRightFill
  • EeIconChevronUpFill
  • EeIconClockFill
  • EeIconCloudFill
  • EeIconComputerChipFill
  • EeIconContactsAltFill
  • EeIconContactsFill
  • EeIconCopyFill
  • EeIconCreditCardFill
  • EeIconCreditMonitoringFill
  • EeIconCrossAltFill
  • EeIconCrossFill
  • EeIconDvrFill
  • EeIconDataCapFill
  • EeIconDataCapReserveFill
  • EeIconDataFill
  • EeIconDataRefreshFill
  • EeIconDetailsFill
  • EeIconDeviceHelpFill
  • EeIconDeviceInsuranceFill
  • EeIconDeviceSecurity2Fill
  • EeIconDeviceSecurityFill
  • EeIconDevicesFill
  • EeIconDishwasherFill
  • EeIconDocumentBillsFill
  • EeIconDocumentDownloadFill
  • EeIconDocumentFill
  • EeIconDocumentWithCopyFill
  • EeIconDoorbellFill
  • EeIconDoorlockFill
  • EeIconDroneFill
  • EeIconEmailReadFill
  • EeIconEmailUnreadFill
  • EeIconEnergyManagementFill
  • EeIconEngagedFill
  • EeIconEreaderFill
  • EeIconFanFill
  • EeIconFastForwardFill
  • EeIconFilmFill
  • EeIconFilterFill
  • EeIconFitnessFill
  • EeIconFlameFill
  • EeIconFlexTvFill
  • EeIconFridgeFill
  • EeIconGpsFill
  • EeIconGamingFill
  • EeIconGamingPassFill
  • EeIconGarageOpeningFill
  • EeIconGiftFill
  • EeIconGlobeFill
  • EeIconHdFill
  • EeIconHardDriveFill
  • EeIconHardDriveNasFill
  • EeIconHeadphonesFill
  • EeIconHeartFill
  • EeIconHeartFilled
  • EeIconHelloFill
  • EeIconHelpFill
  • EeIconHomeFill
  • EeIconHubFill
  • EeIconIpCameraFill
  • EeIconIdeaFill
  • EeIconInfoAltFill
  • EeIconInfoFill
  • EeIconInternetSecurityFill
  • EeIconJourneyFill
  • EeIconKettleFill
  • EeIconLandlineFrEeIconFill
  • EeIconLaptopFill
  • EeIconLaptopVideoConferenceFill
  • EeIconLayoutGridMediumFill
  • EeIconLocationFill
  • EeIconLockedFill
  • EeIconMemberArrivedFill
  • EeIconMemberLeftFill
  • EeIconMemoAddFill
  • EeIconMemoFill
  • EeIconMemoryFill
  • EeIconMinimiseCircleFill
  • EeIconMinimiseFill
  • EeIconMobileFill
  • EeIconMonitorFill
  • EeIconMoreCircleFill
  • EeIconMoreFill
  • EeIconMoreVerticalCircleFill
  • EeIconMoreVerticalFill
  • EeIconMotionDetectedFill
  • EeIconMultiscreenFill
  • EeIconMusicFill
  • EeIconMusicPassFill
  • EeIconNetworkBoostFill
  • EeIconNextFill
  • EeIconNoMotionDetectedFill
  • EeIconNoSignalFill
  • EeIconNotificationFill
  • EeIconPasswordFill
  • EeIconPauseFill
  • EeIconPetsFill
  • EeIconPhoneEndFill
  • EeIconPhoneFill
  • EeIconPictureFill
  • EeIconPlaneFill
  • EeIconPlayFill
  • EeIconPreviousFill
  • EeIconPriceFill
  • EeIconPrinterFill
  • EeIconQuestionFill
  • EeIconRansomwareAppFill
  • EeIconRansomwareMobileFill
  • EeIconRansomwarePcFill
  • EeIconRecyclePhoneFill
  • EeIconRecyclingFill
  • EeIconReleaseFill
  • EeIconReserveDataFill
  • EeIconResolution4KFill
  • EeIconResolutionHdFill
  • EeIconResolutionSdFill
  • EeIconRestoreSettingsFill
  • EeIconRewindFill
  • EeIconRoamingPassFill
  • EeIconSdFill
  • EeIconSmsFill
  • EeIconSmsSecurityFill
  • EeIconSafeSearchFill
  • EeIconSatelliteFill
  • EeIconScanFill
  • EeIconSearchFill
  • EeIconSecureCalendarFill
  • EeIconSensitivityFill
  • EeIconSensorFill
  • EeIconSettingsFill
  • EeIconSettingsUpdateFill
  • EeIconShareFill
  • EeIconShieldFill
  • EeIconShowerFill
  • EeIconSignalFill
  • EeIconSignatureFill
  • EeIconSim2Fill
  • EeIconSimFill
  • EeIconSmartHomeFill
  • EeIconSmartPlugFill
  • EeIconSmokeAlarmFill
  • EeIconSocialFill
  • EeIconSocialPass2Fill
  • EeIconSocialPassFill
  • EeIconSpannerFill
  • EeIconSpeakerFullVolumeFill
  • EeIconSpeakerMuteFill
  • EeIconSpeedFasterFill
  • EeIconSportFootballFill
  • EeIconStarFill
  • EeIconStarFilled
  • EeIconStop2Fill
  • EeIconStopFill
  • EeIconStoreFill
  • EeIconStoreFinderFill
  • EeIconStoreLocationFill
  • EeIconStreamingFill
  • EeIconSuitcaseFill
  • EeIconTv2Fill
  • EeIconTvAndPhone2Fill
  • EeIconTvAndPhoneFill
  • EeIconTvAndTablet2Fill
  • EeIconTvAndTablet3Fill
  • EeIconTvAndTabletFill
  • EeIconTvFill
  • EeIconTabletFill
  • EeIconTasteFill
  • EeIconTextSettings2Fill
  • EeIconTextSettingsFill
  • EeIconThermostatFill
  • EeIconThumbsDownFill
  • EeIconThumbsUpFill
  • EeIconTickFill
  • EeIconTickVariantFill
  • EeIconTicketsFill
  • EeIconToilet2Fill
  • EeIconToiletFill
  • EeIconTradeInFill
  • EeIconTrophyFill
  • EeIconUnlockedFill
  • EeIconUpgradeFill
  • EeIconUploadFill
  • EeIconUser2Fill
  • EeIconUserFill
  • EeIconUserGroupsFill
  • EeIconUserParentAndChildFill
  • EeIconVpnFill
  • EeIconVrHeadsetFill
  • EeIconVanFill
  • EeIconVideoCallFill
  • EeIconVideoFill
  • EeIconVideoPassFill
  • EeIconViewFill
  • EeIconVoiceControlFill
  • EeIconWatchFill
  • EeIconWearablesFill
  • EeIconWebMonitoringFill
  • EeIconWebcamFill
  • EeIconWiFiCallingFill
  • EeIconWirelessAudioFill
  • EeIconWorkstationFill
  • EeIconZoomInFill
  • EeIconZoomOutFill
  • EeIconESimFill