Tip
A Tip is a window that can be placed relative to a Field
and keep its position. It can be used to indicate an action that the user should take or that the robot is working on something related to that UI element. It has a smallish to configure the behaviour and appearance of the displayed window.
To show a tip invoke the tip
function on a Field
instance. In the simplest case you can supply the text to be shown:
Fields.MiddleButton.tip("I am a tip");
// You can then access all tips shown on a Field via the `tips` property
Fields.MiddleButton.tips[0].text = "New text";
If you want more control over the appearance you should provide an object as argument to tip
. E.g. to control the size of the tip window:
Fields.MiddleButton.tip({ text: "I am a tip", width: 150, height: 100 });
Or to change the color and/or display an icon:
Fields.MiddleButton.tip({
text: "I am a tip",
width: 200,
height: 150,
color: "MistyRose",
icon: "BellSolid",
});
Markdown
The text displayed in the tip window can be formatted with markdown.
Fields.MiddleButton.tip({
text: "# I am a tip\nWith support for *markdown* in all its **glory**.",
width: 200,
height: 150,
color: "MistyRose",
icon: "BellSolid",
});
Placement
Use the pointing
property to provide a preferred location of the tip window relative to the Field
to which it is anchored. The tip will re-position itself if it extends beyond the screen bounds.
Fields.MiddleButton.tip({
text: "# I am a tip\nWith support for *markdown* in all its **glory**.",
width: 200,
height: 150,
color: "MistyRose",
icon: "BellSolid",
pointing: "right",
});
Buttons
If you need the user to interact with the field you can set the buttons
property.
var t = Fields.MiddleButton.tip({
text: "# I am a tip\nWith support for *markdown* in all its **glory**.",
width: 200,
height: 150,
color: "MistyRose",
icon: "BellSolid",
pointing: "right",
buttons: [
{
value: "OK",
foregroundColor: "White",
backgroundColor: "Green",
isDefault: true,
},
{ icon: "SadCrySolid", backgroundColor: "Yellow", isCancel: true },
],
});
if (t.wait(10000) == "OK") {
// user clicked ok within 10s
}
Then you can .wait()
on the field and the return value from this invocation will give you the button value
or null
if timed out or the tip was otherwise closed.
Re-use tips
Tip configurations can be re-used if you e.g. want to display the same information on multiple fields.
var t = Fields.MiddleButton.tip("I am tip");
Fields.DisabledButton.tip(t);
// Update text in both tip windows
t.text = "I am a tip shown twice";
Tip API
Properties
text
(string) the (markdown) text to displaypointing
(string) whether to point the tip on theleft
,right
,top
orbottom
side (defaultleft
color
(string) the color to use as background (the text, icon and border colors will adjust automatically) (defaultKhaki
) – see Sticky action colorsicon
(string) an optional icon to be displayed (default ´None´) – see Sticky action iconswidth
(int) the width of the tip windowheight
(int) the height of the tip windownoFin
(bool) set totrue
to hide the Manatee icontimeout
(int) how long to show the tip (default300000
= 5 min)isVisible
(bool) returns whether or not the field is currently visible (cannot be altered)buttons
(array) an array of buttons to show, each button can have the following properties:value
the text to display on the buttonicon
an optional icon to showforegroundColor
the color of the text and iconbackgroundColor
the color of the button backgroundisDefault
to provide an emphasis on the buttonisCancel
which automatically closes the tip when shown
Available icons
You can use the icon names listed below (partial matching supported) - or use a unicode emoji such as 🐟. Find more here
Icon | Name |
---|---|
AccessibleIconBrands | |
AccusoftBrands | |
AddressBookRegular | |
AddressBookSolid | |
AddressCardRegular | |
AddressCardSolid | |
AdnBrands | |
AdversalBrands | |
AffiliatethemeBrands | |
AirbnbBrands | |
AlgoliaBrands | |
AlignCenterSolid | |
AlignJustifySolid | |
AlignLeftSolid | |
AlignRightSolid | |
AlipayBrands | |
AmazonBrands | |
AmazonPayBrands | |
AmiliaBrands | |
AnchorCircleCheckSolid | |
AnchorCircleExclamationSolid | |
AnchorCircleXmarkSolid | |
AnchorLockSolid | |
AnchorSolid | |
AndroidBrands | |
AngellistBrands | |
AngleDownSolid | |
AngleLeftSolid | |
AngleRightSolid | |
AnglesDownSolid | |
AnglesLeftSolid | |
AnglesRightSolid | |
AnglesUpSolid | |
AngleUpSolid | |
AngrycreativeBrands | |
AngularBrands | |
AnkhSolid | |
ApperBrands | |
AppleBrands | |
ApplePayBrands | |
AppleWholeSolid | |
AppStoreBrands | |
AppStoreIosBrands | |
ArchwaySolid | |
ArrowDown19Solid | |
ArrowDown91Solid | |
ArrowDownAZSolid | |
ArrowDownLongSolid | |
ArrowDownShortWideSolid | |
ArrowDownSolid | |
ArrowDownUpAcrossLineSolid | |
ArrowDownUpLockSolid | |
ArrowDownWideShortSolid | |
ArrowDownZASolid | |
ArrowLeftLongSolid | |
ArrowLeftSolid | |
ArrowPointerSolid | |
ArrowRightArrowLeftSolid | |
ArrowRightFromBracketSolid | |
ArrowRightLongSolid | |
ArrowRightSolid | |
ArrowRightToBracketSolid | |
ArrowRightToCitySolid | |
ArrowRotateLeftSolid | |
ArrowRotateRightSolid | |
ArrowsDownToLineSolid | |
ArrowsDownToPeopleSolid | |
ArrowsLeftRightSolid | |
ArrowsLeftRightToLineSolid | |
ArrowsRotateSolid | |
ArrowsSpinSolid | |
ArrowsSplitUpAndLeftSolid | |
ArrowsToCircleSolid | |
ArrowsToDotSolid | |
ArrowsToEyeSolid | |
ArrowsTurnRightSolid | |
ArrowsTurnToDotsSolid | |
ArrowsUpDownLeftRightSolid | |
ArrowsUpDownSolid | |
ArrowsUpToLineSolid | |
ArrowTrendDownSolid | |
ArrowTrendUpSolid | |
ArrowTurnDownSolid | |
ArrowTurnUpSolid | |
ArrowUp19Solid | |
ArrowUp91Solid | |
ArrowUpAZSolid | |
ArrowUpFromBracketSolid | |
ArrowUpFromGroundWaterSolid | |
ArrowUpFromWaterPumpSolid | |
ArrowUpLongSolid | |
ArrowUpRightDotsSolid | |
ArrowUpRightFromSquareSolid | |
ArrowUpShortWideSolid | |
ArrowUpSolid | |
ArrowUpWideShortSolid | |
ArrowUpZASolid | |
ArtstationBrands | |
ASolid | |
AsteriskSolid | |
AsymmetrikBrands | |
AtlassianBrands | |
AtomSolid | |
AtSolid | |
AudibleBrands | |
AudioDescriptionSolid | |
AustralSignSolid | |
AutoprefixerBrands | |
AvianexBrands | |
AviatoBrands | |
AwardSolid | |
AwsBrands | |
BabyCarriageSolid | |
BabySolid | |
BackwardFastSolid | |
BackwardSolid | |
BackwardStepSolid | |
BaconSolid | |
BacteriaSolid | |
BacteriumSolid | |
BagShoppingSolid | |
BahaiSolid | |
BahtSignSolid | |
BandageSolid | |
BandcampBrands | |
BangladeshiTakaSignSolid | |
BanSmokingSolid | |
BanSolid | |
BarcodeSolid | |
BarsProgressSolid | |
BarsSolid | |
BarsStaggeredSolid | |
BaseballBatBallSolid | |
BaseballSolid | |
BasketballSolid | |
BasketShoppingSolid | |
BathSolid | |
BatteryEmptySolid | |
BatteryFullSolid | |
BatteryHalfSolid | |
BatteryQuarterSolid | |
BatteryThreeQuartersSolid | |
BattleNetBrands | |
BedPulseSolid | |
BedSolid | |
BeerMugEmptySolid | |
BehanceBrands | |
BellConciergeSolid | |
BellRegular | |
BellSlashRegular | |
BellSlashSolid | |
BellSolid | |
BezierCurveSolid | |
BicycleSolid | |
BilibiliBrands | |
BimobjectBrands | |
BinocularsSolid | |
BiohazardSolid | |
BitbucketBrands | |
BitcoinBrands | |
BitcoinSignSolid | |
BityBrands | |
BlackberryBrands | |
BlackTieBrands | |
BlenderPhoneSolid | |
BlenderSolid | |
BloggerBBrands | |
BloggerBrands | |
BlogSolid | |
BlueskyBrands | |
BluetoothBBrands | |
BluetoothBrands | |
BoldSolid | |
BoltLightningSolid | |
BoltSolid | |
BombSolid | |
BoneSolid | |
BongSolid | |
BookAtlasSolid | |
BookBibleSolid | |
BookBookmarkSolid | |
BookJournalWhillsSolid | |
BookmarkRegular | |
BookmarkSolid | |
BookMedicalSolid | |
BookOpenReaderSolid | |
BookOpenSolid | |
BookQuranSolid | |
BookSkullSolid | |
BookSolid | |
BookTanakhSolid | |
BootstrapBrands | |
BorderAllSolid | |
BorderNoneSolid | |
BorderTopLeftSolid | |
BoreHoleSolid | |
BotsBrands | |
BottleDropletSolid | |
BottleWaterSolid | |
BowlFoodSolid | |
BowlingBallSolid | |
BowlRiceSolid | |
BoxArchiveSolid | |
BoxesPackingSolid | |
BoxesStackedSolid | |
BoxOpenSolid | |
BoxSolid | |
BoxTissueSolid | |
BrailleSolid | |
BrainSolid | |
BraveBrands | |
BraveReverseBrands | |
BrazilianRealSignSolid | |
BreadSliceSolid | |
BridgeCircleCheckSolid | |
BridgeCircleExclamationSolid | |
BridgeCircleXmarkSolid | |
BridgeLockSolid | |
BridgeSolid | |
BridgeWaterSolid | |
BriefcaseMedicalSolid | |
BriefcaseSolid | |
BroomBallSolid | |
BroomSolid | |
BrushSolid | |
BSolid | |
BtcBrands | |
BucketSolid | |
BufferBrands | |
BugSlashSolid | |
BugSolid | |
BugsSolid | |
BuildingCircleArrowRightSolid | |
BuildingCircleCheckSolid | |
BuildingCircleExclamationSolid | |
BuildingCircleXmarkSolid | |
BuildingColumnsSolid | |
BuildingFlagSolid | |
BuildingLockSolid | |
BuildingNgoSolid | |
BuildingRegular | |
BuildingShieldSolid | |
BuildingSolid | |
BuildingUnSolid | |
BuildingUserSolid | |
BuildingWheatSolid | |
BullhornSolid | |
BullseyeSolid | |
BurgerSolid | |
BuromobelexperteBrands | |
BurstSolid | |
BusinessTimeSolid | |
BusSimpleSolid | |
BusSolid | |
BuyNLargeBrands | |
BuyselladsBrands | |
CableCarSolid | |
CakeCandlesSolid | |
CalculatorSolid | |
CalendarCheckRegular | |
CalendarCheckSolid | |
CalendarDaySolid | |
CalendarDaysRegular | |
CalendarDaysSolid | |
CalendarMinusRegular | |
CalendarMinusSolid | |
CalendarPlusRegular | |
CalendarPlusSolid | |
CalendarRegular | |
CalendarSolid | |
CalendarWeekSolid | |
CalendarXmarkRegular | |
CalendarXmarkSolid | |
CameraRetroSolid | |
CameraRotateSolid | |
CameraSolid | |
CampgroundSolid | |
CanadianMapleLeafBrands | |
CandyCaneSolid | |
CannabisSolid | |
CapsulesSolid | |
CaravanSolid | |
CarBatterySolid | |
CarBurstSolid | |
CaretDownSolid | |
CaretLeftSolid | |
CaretRightSolid | |
CaretUpSolid | |
CarOnSolid | |
CarRearSolid | |
CarrotSolid | |
CarSideSolid | |
CarSolid | |
CartArrowDownSolid | |
CartFlatbedSolid | |
CartFlatbedSuitcaseSolid | |
CartPlusSolid | |
CartShoppingSolid | |
CarTunnelSolid | |
CashRegisterSolid | |
CatSolid | |
CcAmazonPayBrands | |
CcAmexBrands | |
CcApplePayBrands | |
CcDinersClubBrands | |
CcDiscoverBrands | |
CcJcbBrands | |
CcMastercardBrands | |
CcPaypalBrands | |
CcStripeBrands | |
CcVisaBrands | |
CediSignSolid | |
CentercodeBrands | |
CentosBrands | |
CentSignSolid | |
CertificateSolid | |
ChairSolid | |
ChalkboardSolid | |
ChalkboardUserSolid | |
ChampagneGlassesSolid | |
ChargingStationSolid | |
ChartAreaSolid | |
ChartBarRegular | |
ChartBarSolid | |
ChartColumnSolid | |
ChartGanttSolid | |
ChartLineSolid | |
ChartPieSolid | |
ChartSimpleSolid | |
CheckDoubleSolid | |
CheckSolid | |
CheckToSlotSolid | |
CheeseSolid | |
ChessBishopRegular | |
ChessBishopSolid | |
ChessBoardSolid | |
ChessKingRegular | |
ChessKingSolid | |
ChessKnightRegular | |
ChessKnightSolid | |
ChessPawnRegular | |
ChessPawnSolid | |
ChessQueenRegular | |
ChessQueenSolid | |
ChessRookRegular | |
ChessRookSolid | |
ChessSolid | |
ChevronDownSolid | |
ChevronLeftSolid | |
ChevronRightSolid | |
ChevronUpSolid | |
ChildCombatantSolid | |
ChildDressSolid | |
ChildReachingSolid | |
ChildrenSolid | |
ChildSolid | |
ChromeBrands | |
ChromecastBrands | |
ChurchSolid | |
CircleArrowDownSolid | |
CircleArrowLeftSolid | |
CircleArrowRightSolid | |
CircleArrowUpSolid | |
CircleCheckRegular | |
CircleCheckSolid | |
CircleChevronDownSolid | |
CircleChevronLeftSolid | |
CircleChevronRightSolid | |
CircleChevronUpSolid | |
CircleDollarToSlotSolid | |
CircleDotRegular | |
CircleDotSolid | |
CircleDownRegular | |
CircleDownSolid | |
CircleExclamationSolid | |
CircleHalfStrokeSolid | |
CircleHSolid | |
CircleInfoSolid | |
CircleLeftRegular | |
CircleLeftSolid | |
CircleMinusSolid | |
CircleNodesSolid | |
CircleNotchSolid | |
CirclePauseRegular | |
CirclePauseSolid | |
CirclePlayRegular | |
CirclePlaySolid | |
CirclePlusSolid | |
CircleQuestionRegular | |
CircleQuestionSolid | |
CircleRadiationSolid | |
CircleRegular | |
CircleRightRegular | |
CircleRightSolid | |
CircleSolid | |
CircleStopRegular | |
CircleStopSolid | |
CircleUpRegular | |
CircleUpSolid | |
CircleUserRegular | |
CircleUserSolid | |
CircleXmarkRegular | |
CircleXmarkSolid | |
CitySolid | |
ClapperboardSolid | |
ClipboardCheckSolid | |
ClipboardListSolid | |
ClipboardQuestionSolid | |
ClipboardRegular | |
ClipboardSolid | |
ClipboardUserSolid | |
ClockRegular | |
ClockRotateLeftSolid | |
ClockSolid | |
CloneRegular | |
CloneSolid | |
ClosedCaptioningRegular | |
ClosedCaptioningSolid | |
CloudArrowDownSolid | |
CloudArrowUpSolid | |
CloudBoltSolid | |
CloudflareBrands | |
CloudMeatballSolid | |
CloudMoonRainSolid | |
CloudMoonSolid | |
CloudRainSolid | |
CloudscaleBrands | |
CloudShowersHeavySolid | |
CloudShowersWaterSolid | |
CloudsmithBrands | |
CloudSolid | |
CloudSunRainSolid | |
CloudSunSolid | |
CloudversifyBrands | |
CloverSolid | |
CmplidBrands | |
CodeBranchSolid | |
CodeCommitSolid | |
CodeCompareSolid | |
CodeForkSolid | |
CodeMergeSolid | |
CodepenBrands | |
CodePullRequestSolid | |
CodeSolid | |
CodiepieBrands | |
CoinsSolid | |
ColonSignSolid | |
CommentDollarSolid | |
CommentDotsRegular | |
CommentDotsSolid | |
CommentMedicalSolid | |
CommentRegular | |
CommentsDollarSolid | |
CommentSlashSolid | |
CommentSmsSolid | |
CommentSolid | |
CommentsRegular | |
CommentsSolid | |
CompactDiscSolid | |
CompassDraftingSolid | |
CompassRegular | |
CompassSolid | |
CompressSolid | |
ComputerMouseSolid | |
ComputerSolid | |
ConfluenceBrands | |
ConnectdevelopBrands | |
ContaoBrands | |
CookieBiteSolid | |
CookieSolid | |
CopyRegular | |
CopyrightRegular | |
CopyrightSolid | |
CopySolid | |
CottonBureauBrands | |
CouchSolid | |
CowSolid | |
CpanelBrands | |
CreativeCommonsBrands | |
CreativeCommonsByBrands | |
CreativeCommonsNcBrands | |
CreativeCommonsNcEuBrands | |
CreativeCommonsNcJpBrands | |
CreativeCommonsNdBrands | |
CreativeCommonsPdAltBrands | |
CreativeCommonsPdBrands | |
CreativeCommonsRemixBrands | |
CreativeCommonsSaBrands | |
CreativeCommonsSamplingBrands | |
CreativeCommonsSamplingPlusBrands | |
CreativeCommonsShareBrands | |
CreativeCommonsZeroBrands | |
CreditCardRegular | |
CreditCardSolid | |
CriticalRoleBrands | |
CropSimpleSolid | |
CropSolid | |
CrosshairsSolid | |
CrossSolid | |
CrownSolid | |
CrowSolid | |
CrutchSolid | |
CruzeiroSignSolid | |
CSolid | |
Css3AltBrands | |
Css3Brands | |
CubeSolid | |
CubesSolid | |
CubesStackedSolid | |
CuttlefishBrands | |
DailymotionBrands | |
DAndDBeyondBrands | |
DAndDBrands | |
DashcubeBrands | |
DatabaseSolid | |
DebianBrands | |
DeezerBrands | |
DeleteLeftSolid | |
DeliciousBrands | |
DemocratSolid | |
DeploydogBrands | |
DeskproBrands | |
DesktopSolid | |
DevBrands | |
DeviantartBrands | |
DharmachakraSolid | |
DhlBrands | |
DiagramNextSolid | |
DiagramPredecessorSolid | |
DiagramProjectSolid | |
DiagramSuccessorSolid | |
DiamondSolid | |
DiamondTurnRightSolid | |
DiasporaBrands | |
DiceD20Solid | |
DiceD6Solid | |
DiceFiveSolid | |
DiceFourSolid | |
DiceOneSolid | |
DiceSixSolid | |
DiceSolid | |
DiceThreeSolid | |
DiceTwoSolid | |
DiggBrands | |
DigitalOceanBrands | |
DiscordBrands | |
DiscourseBrands | |
DiseaseSolid | |
DisplaySolid | |
DivideSolid | |
DnaSolid | |
DochubBrands | |
DockerBrands | |
DogSolid | |
DollarSignSolid | |
DollySolid | |
DongSignSolid | |
DoorClosedSolid | |
DoorOpenSolid | |
DoveSolid | |
DownLeftAndUpRightToCenterSolid | |
DownloadSolid | |
DownLongSolid | |
Draft2digitalBrands | |
DragonSolid | |
DrawPolygonSolid | |
DribbbleBrands | |
DropboxBrands | |
DropletSlashSolid | |
DropletSolid | |
DrumSolid | |
DrumSteelpanSolid | |
DrumstickBiteSolid | |
DrupalBrands | |
DSolid | |
DumbbellSolid | |
DumpsterFireSolid | |
DumpsterSolid | |
DungeonSolid | |
DyalogBrands | |
EarDeafSolid | |
EarListenSolid | |
EarlybirdsBrands | |
EarthAfricaSolid | |
EarthAmericasSolid | |
EarthAsiaSolid | |
EarthEuropeSolid | |
EarthOceaniaSolid | |
EbayBrands | |
EdgeBrands | |
EdgeLegacyBrands | |
EggSolid | |
EjectSolid | |
ElementorBrands | |
ElevatorSolid | |
EllipsisSolid | |
EllipsisVerticalSolid | |
ElloBrands | |
EmberBrands | |
EmpireBrands | |
EnvelopeCircleCheckSolid | |
EnvelopeOpenRegular | |
EnvelopeOpenSolid | |
EnvelopeOpenTextSolid | |
EnvelopeRegular | |
EnvelopesBulkSolid | |
EnvelopeSolid | |
EnviraBrands | |
EqualsSolid | |
EraserSolid | |
ErlangBrands | |
ESolid | |
EthereumBrands | |
EthernetSolid | |
EtsyBrands | |
EuroSignSolid | |
EvernoteBrands | |
ExclamationSolid | |
ExpandSolid | |
ExpeditedsslBrands | |
ExplosionSolid | |
EyeDropperSolid | |
EyeLowVisionSolid | |
EyeRegular | |
EyeSlashRegular | |
EyeSlashSolid | |
EyeSolid | |
FaceAngryRegular | |
FaceAngrySolid | |
FacebookBrands | |
FacebookFBrands | |
FacebookMessengerBrands | |
FaceDizzyRegular | |
FaceDizzySolid | |
FaceFlushedRegular | |
FaceFlushedSolid | |
FaceFrownOpenRegular | |
FaceFrownOpenSolid | |
FaceFrownRegular | |
FaceFrownSolid | |
FaceGrimaceRegular | |
FaceGrimaceSolid | |
FaceGrinBeamRegular | |
FaceGrinBeamSolid | |
FaceGrinBeamSweatRegular | |
FaceGrinBeamSweatSolid | |
FaceGrinHeartsRegular | |
FaceGrinHeartsSolid | |
FaceGrinRegular | |
FaceGrinSolid | |
FaceGrinSquintRegular | |
FaceGrinSquintSolid | |
FaceGrinSquintTearsRegular | |
FaceGrinSquintTearsSolid | |
FaceGrinStarsRegular | |
FaceGrinStarsSolid | |
FaceGrinTearsRegular | |
FaceGrinTearsSolid | |
FaceGrinTongueRegular | |
FaceGrinTongueSolid | |
FaceGrinTongueSquintRegular | |
FaceGrinTongueSquintSolid | |
FaceGrinTongueWinkRegular | |
FaceGrinTongueWinkSolid | |
FaceGrinWideRegular | |
FaceGrinWideSolid | |
FaceGrinWinkRegular | |
FaceGrinWinkSolid | |
FaceKissBeamRegular | |
FaceKissBeamSolid | |
FaceKissRegular | |
FaceKissSolid | |
FaceKissWinkHeartRegular | |
FaceKissWinkHeartSolid | |
FaceLaughBeamRegular | |
FaceLaughBeamSolid | |
FaceLaughRegular | |
FaceLaughSolid | |
FaceLaughSquintRegular | |
FaceLaughSquintSolid | |
FaceLaughWinkRegular | |
FaceLaughWinkSolid | |
FaceMehBlankRegular | |
FaceMehBlankSolid | |
FaceMehRegular | |
FaceMehSolid | |
FaceRollingEyesRegular | |
FaceRollingEyesSolid | |
FaceSadCryRegular | |
FaceSadCrySolid | |
FaceSadTearRegular | |
FaceSadTearSolid | |
FaceSmileBeamRegular | |
FaceSmileBeamSolid | |
FaceSmileRegular | |
FaceSmileSolid | |
FaceSmileWinkRegular | |
FaceSmileWinkSolid | |
FaceSurpriseRegular | |
FaceSurpriseSolid | |
FaceTiredRegular | |
FaceTiredSolid | |
FanSolid | |
FantasyFlightGamesBrands | |
FaucetDripSolid | |
FaucetSolid | |
FaxSolid | |
FeatherPointedSolid | |
FeatherSolid | |
FedexBrands | |
FedoraBrands | |
FerrySolid | |
FigmaBrands | |
FileArrowDownSolid | |
FileArrowUpSolid | |
FileAudioRegular | |
FileAudioSolid | |
FileCircleCheckSolid | |
FileCircleExclamationSolid | |
FileCircleMinusSolid | |
FileCirclePlusSolid | |
FileCircleQuestionSolid | |
FileCircleXmarkSolid | |
FileCodeRegular | |
FileCodeSolid | |
FileContractSolid | |
FileCsvSolid | |
FileExcelRegular | |
FileExcelSolid | |
FileExportSolid | |
FileImageRegular | |
FileImageSolid | |
FileImportSolid | |
FileInvoiceDollarSolid | |
FileInvoiceSolid | |
FileLinesRegular | |
FileLinesSolid | |
FileMedicalSolid | |
FilePdfRegular | |
FilePdfSolid | |
FilePenSolid | |
FilePowerpointRegular | |
FilePowerpointSolid | |
FilePrescriptionSolid | |
FileRegular | |
FileShieldSolid | |
FileSignatureSolid | |
FileSolid | |
FileVideoRegular | |
FileVideoSolid | |
FileWaveformSolid | |
FileWordRegular | |
FileWordSolid | |
FileZipperRegular | |
FileZipperSolid | |
FillDripSolid | |
FillSolid | |
FilmSolid | |
FilterCircleDollarSolid | |
FilterCircleXmarkSolid | |
FilterSolid | |
FingerprintSolid | |
FireBurnerSolid | |
FireExtinguisherSolid | |
FireFlameCurvedSolid | |
FireFlameSimpleSolid | |
FirefoxBrands | |
FirefoxBrowserBrands | |
FireSolid | |
FirstdraftBrands | |
FirstOrderAltBrands | |
FirstOrderBrands | |
FishFinsSolid | |
FishSolid | |
FlagCheckeredSolid | |
FlagRegular | |
FlagSolid | |
FlagUsaSolid | |
FlaskSolid | |
FlaskVialSolid | |
FlickrBrands | |
FlipboardBrands | |
FloppyDiskRegular | |
FloppyDiskSolid | |
FlorinSignSolid | |
FlyBrands | |
FolderClosedRegular | |
FolderClosedSolid | |
FolderMinusSolid | |
FolderOpenRegular | |
FolderOpenSolid | |
FolderPlusSolid | |
FolderRegular | |
FolderSolid | |
FolderTreeSolid | |
FontAwesomeBrands | |
FontAwesomeRegular | |
FontAwesomeSolid | |
FonticonsBrands | |
FonticonsFiBrands | |
FontSolid | |
FootballSolid | |
FortAwesomeAltBrands | |
FortAwesomeBrands | |
ForumbeeBrands | |
ForwardFastSolid | |
ForwardSolid | |
ForwardStepSolid | |
FoursquareBrands | |
FrancSignSolid | |
FreebsdBrands | |
FreeCodeCampBrands | |
FrogSolid | |
FSolid | |
FulcrumBrands | |
FutbolRegular | |
FutbolSolid | |
GalacticRepublicBrands | |
GalacticSenateBrands | |
GamepadSolid | |
GasPumpSolid | |
GaugeHighSolid | |
GaugeSimpleHighSolid | |
GaugeSimpleSolid | |
GaugeSolid | |
GavelSolid | |
GearSolid | |
GearsSolid | |
GemRegular | |
GemSolid | |
GenderlessSolid | |
GetPocketBrands | |
GgBrands | |
GgCircleBrands | |
GhostSolid | |
GiftSolid | |
GiftsSolid | |
GitAltBrands | |
GitBrands | |
GithubAltBrands | |
GithubBrands | |
GitkrakenBrands | |
GitlabBrands | |
GitterBrands | |
GlassesSolid | |
GlassWaterDropletSolid | |
GlassWaterSolid | |
GlideBrands | |
GlideGBrands | |
GlobeSolid | |
GoforeBrands | |
GolangBrands | |
GolfBallTeeSolid | |
GoodreadsBrands | |
GoodreadsGBrands | |
GoogleBrands | |
GoogleDriveBrands | |
GooglePayBrands | |
GooglePlayBrands | |
GooglePlusBrands | |
GooglePlusGBrands | |
GoogleScholarBrands | |
GoogleWalletBrands | |
GopuramSolid | |
GraduationCapSolid | |
GratipayBrands | |
GravBrands | |
GreaterThanEqualSolid | |
GreaterThanSolid | |
GripfireBrands | |
GripLinesSolid | |
GripLinesVerticalSolid | |
GripSolid | |
GripVerticalSolid | |
GroupArrowsRotateSolid | |
GruntBrands | |
GSolid | |
GuaraniSignSolid | |
GuildedBrands | |
GuitarSolid | |
GulpBrands | |
GunSolid | |
HackerNewsBrands | |
HackerrankBrands | |
HammerSolid | |
HamsaSolid | |
HandBackFistRegular | |
HandBackFistSolid | |
HandcuffsSolid | |
HandDotsSolid | |
HandFistSolid | |
HandHoldingDollarSolid | |
HandHoldingDropletSolid | |
HandHoldingHandSolid | |
HandHoldingHeartSolid | |
HandHoldingMedicalSolid | |
HandHoldingSolid | |
HandLizardRegular | |
HandLizardSolid | |
HandMiddleFingerSolid | |
HandPeaceRegular | |
HandPeaceSolid | |
HandPointDownRegular | |
HandPointDownSolid | |
HandPointerRegular | |
HandPointerSolid | |
HandPointLeftRegular | |
HandPointLeftSolid | |
HandPointRightRegular | |
HandPointRightSolid | |
HandPointUpRegular | |
HandPointUpSolid | |
HandRegular | |
HandsAslInterpretingSolid | |
HandsBoundSolid | |
HandsBubblesSolid | |
HandScissorsRegular | |
HandScissorsSolid | |
HandsClappingSolid | |
HandshakeAngleSolid | |
HandshakeRegular | |
HandshakeSimpleSlashSolid | |
HandshakeSimpleSolid | |
HandshakeSlashSolid | |
HandshakeSolid | |
HandsHoldingChildSolid | |
HandsHoldingCircleSolid | |
HandsHoldingSolid | |
HandSolid | |
HandSparklesSolid | |
HandSpockRegular | |
HandSpockSolid | |
HandsPrayingSolid | |
HandsSolid | |
HanukiahSolid | |
HardDriveRegular | |
HardDriveSolid | |
HashnodeBrands | |
HashtagSolid | |
HatCowboySideSolid | |
HatCowboySolid | |
HatWizardSolid | |
HeadingSolid | |
HeadphonesSimpleSolid | |
HeadphonesSolid | |
HeadsetSolid | |
HeadSideCoughSlashSolid | |
HeadSideCoughSolid | |
HeadSideMaskSolid | |
HeadSideVirusSolid | |
HeartCircleBoltSolid | |
HeartCircleCheckSolid | |
HeartCircleExclamationSolid | |
HeartCircleMinusSolid | |
HeartCirclePlusSolid | |
HeartCircleXmarkSolid | |
HeartCrackSolid | |
HeartPulseSolid | |
HeartRegular | |
HeartSolid | |
HelicopterSolid | |
HelicopterSymbolSolid | |
HelmetSafetySolid | |
HelmetUnSolid | |
HighlighterSolid | |
HillAvalancheSolid | |
HillRockslideSolid | |
HippoSolid | |
HipsBrands | |
HireAHelperBrands | |
HiveBrands | |
HockeyPuckSolid | |
HollyBerrySolid | |
HooliBrands | |
HornbillBrands | |
HorseHeadSolid | |
HorseSolid | |
HospitalRegular | |
HospitalSolid | |
HospitalUserSolid | |
HotdogSolid | |
HotelSolid | |
HotjarBrands | |
HotTubPersonSolid | |
HourglassEndSolid | |
HourglassHalfRegular | |
HourglassHalfSolid | |
HourglassRegular | |
HourglassSolid | |
HourglassStartSolid | |
HouseChimneyCrackSolid | |
HouseChimneyMedicalSolid | |
HouseChimneySolid | |
HouseChimneyUserSolid | |
HouseChimneyWindowSolid | |
HouseCircleCheckSolid | |
HouseCircleExclamationSolid | |
HouseCircleXmarkSolid | |
HouseCrackSolid | |
HouseFireSolid | |
HouseFlagSolid | |
HouseFloodWaterCircleArrowRightSolid | |
HouseFloodWaterSolid | |
HouseLaptopSolid | |
HouseLockSolid | |
HouseMedicalCircleCheckSolid | |
HouseMedicalCircleExclamationSolid | |
HouseMedicalCircleXmarkSolid | |
HouseMedicalFlagSolid | |
HouseMedicalSolid | |
HouseSignalSolid | |
HouseSolid | |
HouseTsunamiSolid | |
HouseUserSolid | |
HouzzBrands | |
HryvniaSignSolid | |
HSolid | |
Html5Brands | |
HubspotBrands | |
HurricaneSolid | |
IceCreamSolid | |
IciclesSolid | |
IconsSolid | |
ICursorSolid | |
IdBadgeRegular | |
IdBadgeSolid | |
IdCardClipSolid | |
IdCardRegular | |
IdCardSolid | |
IdealBrands | |
IglooSolid | |
ImagePortraitSolid | |
ImageRegular | |
ImageSolid | |
ImagesRegular | |
ImagesSolid | |
ImdbBrands | |
InboxSolid | |
IndentSolid | |
IndianRupeeSignSolid | |
IndustrySolid | |
InfinitySolid | |
InfoSolid | |
InstagramBrands | |
InstalodBrands | |
IntercomBrands | |
InternetExplorerBrands | |
InvisionBrands | |
IoxhostBrands | |
ISolid | |
ItalicSolid | |
ItchIoBrands | |
ItunesBrands | |
ItunesNoteBrands | |
JarSolid | |
JarWheatSolid | |
JavaBrands | |
JediOrderBrands | |
JediSolid | |
JenkinsBrands | |
JetFighterSolid | |
JetFighterUpSolid | |
JiraBrands | |
JogetBrands | |
JointSolid | |
JoomlaBrands | |
JsBrands | |
JsfiddleBrands | |
JSolid | |
JugDetergentSolid | |
JxlBrands | |
KaabaSolid | |
KaggleBrands | |
KeybaseBrands | |
KeyboardRegular | |
KeyboardSolid | |
KeycdnBrands | |
KeySolid | |
KhandaSolid | |
KickstarterBrands | |
KickstarterKBrands | |
KipSignSolid | |
KitchenSetSolid | |
KitMedicalSolid | |
KiwiBirdSolid | |
KorvueBrands | |
KSolid | |
LandmarkDomeSolid | |
LandmarkFlagSolid | |
LandmarkSolid | |
LandMineOnSolid | |
LanguageSolid | |
LaptopCodeSolid | |
LaptopFileSolid | |
LaptopMedicalSolid | |
LaptopSolid | |
LaravelBrands | |
LariSignSolid | |
LastfmBrands | |
LayerGroupSolid | |
LeafSolid | |
LeanpubBrands | |
LeftLongSolid | |
LeftRightSolid | |
LemonRegular | |
LemonSolid | |
LessBrands | |
LessThanEqualSolid | |
LessThanSolid | |
LetterboxdBrands | |
LifeRingRegular | |
LifeRingSolid | |
LightbulbRegular | |
LightbulbSolid | |
LineBrands | |
LinesLeaningSolid | |
LinkedinBrands | |
LinkedinInBrands | |
LinkSlashSolid | |
LinkSolid | |
LinodeBrands | |
LinuxBrands | |
LiraSignSolid | |
ListCheckSolid | |
ListOlSolid | |
ListSolid | |
ListUlSolid | |
LitecoinSignSolid | |
LocationArrowSolid | |
LocationCrosshairsSolid | |
LocationDotSolid | |
LocationPinLockSolid | |
LocationPinSolid | |
LockOpenSolid | |
LockSolid | |
LocustSolid | |
LSolid | |
LungsSolid | |
LungsVirusSolid | |
LyftBrands | |
MagentoBrands | |
MagnetSolid | |
MagnifyingGlassArrowRightSolid | |
MagnifyingGlassChartSolid | |
MagnifyingGlassDollarSolid | |
MagnifyingGlassLocationSolid | |
MagnifyingGlassMinusSolid | |
MagnifyingGlassPlusSolid | |
MagnifyingGlassSolid | |
MailchimpBrands | |
ManatSignSolid | |
MandalorianBrands | |
MapLocationDotSolid | |
MapLocationSolid | |
MapPinSolid | |
MapRegular | |
MapSolid | |
MarkdownBrands | |
MarkerSolid | |
MarsAndVenusBurstSolid | |
MarsAndVenusSolid | |
MarsDoubleSolid | |
MarsSolid | |
MarsStrokeRightSolid | |
MarsStrokeSolid | |
MarsStrokeUpSolid | |
MartiniGlassCitrusSolid | |
MartiniGlassEmptySolid | |
MartiniGlassSolid | |
MaskFaceSolid | |
MaskSolid | |
MasksTheaterSolid | |
MaskVentilatorSolid | |
MastodonBrands | |
MattressPillowSolid | |
MaxcdnBrands | |
MaximizeSolid | |
MdbBrands | |
MedalSolid | |
MedappsBrands | |
MediumBrands | |
MedrtBrands | |
MeetupBrands | |
MegaportBrands | |
MemorySolid | |
MendeleyBrands | |
MenorahSolid | |
MercurySolid | |
MessageRegular | |
MessageSolid | |
MetaBrands | |
MeteorSolid | |
MicroblogBrands | |
MicrochipSolid | |
MicrophoneLinesSlashSolid | |
MicrophoneLinesSolid | |
MicrophoneSlashSolid | |
MicrophoneSolid | |
MicroscopeSolid | |
MicrosoftBrands | |
MillSignSolid | |
MinimizeSolid | |
MintbitBrands | |
MinusSolid | |
MittenSolid | |
MixBrands | |
MixcloudBrands | |
MixerBrands | |
MizuniBrands | |
MobileButtonSolid | |
MobileRetroSolid | |
MobileScreenButtonSolid | |
MobileScreenSolid | |
MobileSolid | |
ModxBrands | |
MoneroBrands | |
MoneyBill1Regular | |
MoneyBill1Solid | |
MoneyBill1WaveSolid | |
MoneyBillSolid | |
MoneyBillsSolid | |
MoneyBillTransferSolid | |
MoneyBillTrendUpSolid | |
MoneyBillWaveSolid | |
MoneyBillWheatSolid | |
MoneyCheckDollarSolid | |
MoneyCheckSolid | |
MonumentSolid | |
MoonRegular | |
MoonSolid | |
MortarPestleSolid | |
MosqueSolid | |
MosquitoNetSolid | |
MosquitoSolid | |
MotorcycleSolid | |
MoundSolid | |
MountainCitySolid | |
MountainSolid | |
MountainSunSolid | |
MSolid | |
MugHotSolid | |
MugSaucerSolid | |
MusicSolid | |
NairaSignSolid | |
NapsterBrands | |
NeosBrands | |
NetworkWiredSolid | |
NeuterSolid | |
NewspaperRegular | |
NewspaperSolid | |
NfcDirectionalBrands | |
NfcSymbolBrands | |
NimblrBrands | |
NodeBrands | |
NodeJsBrands | |
NotdefSolid | |
NotEqualSolid | |
NotesMedicalSolid | |
NoteStickyRegular | |
NoteStickySolid | |
NpmBrands | |
Ns8Brands | |
NSolid | |
NutritionixBrands | |
ObjectGroupRegular | |
ObjectGroupSolid | |
ObjectUngroupRegular | |
ObjectUngroupSolid | |
OctopusDeployBrands | |
OdnoklassnikiBrands | |
OdyseeBrands | |
OilCanSolid | |
OilWellSolid | |
OldRepublicBrands | |
OmSolid | |
OpencartBrands | |
OpenidBrands | |
OpensuseBrands | |
OperaBrands | |
OptinMonsterBrands | |
OrcidBrands | |
OsiBrands | |
OSolid | |
OtterSolid | |
OutdentSolid | |
PadletBrands | |
Page4Brands | |
PagelinesBrands | |
PagerSolid | |
PaintbrushSolid | |
PaintRollerSolid | |
PaletteSolid | |
PalfedBrands | |
PalletSolid | |
PanoramaSolid | |
PaperclipSolid | |
PaperPlaneRegular | |
PaperPlaneSolid | |
ParachuteBoxSolid | |
ParagraphSolid | |
PassportSolid | |
PasteRegular | |
PasteSolid | |
PatreonBrands | |
PauseSolid | |
PawSolid | |
PaypalBrands | |
PeaceSolid | |
PencilSolid | |
PenClipSolid | |
PenFancySolid | |
PenNibSolid | |
PenRulerSolid | |
PenSolid | |
PenToSquareRegular | |
PenToSquareSolid | |
PeopleArrowsSolid | |
PeopleCarryBoxSolid | |
PeopleGroupSolid | |
PeopleLineSolid | |
PeoplePullingSolid | |
PeopleRobberySolid | |
PeopleRoofSolid | |
PepperHotSolid | |
PerbyteBrands | |
PercentSolid | |
PeriscopeBrands | |
PersonArrowDownToLineSolid | |
PersonArrowUpFromLineSolid | |
PersonBikingSolid | |
PersonBoothSolid | |
PersonBreastfeedingSolid | |
PersonBurstSolid | |
PersonCaneSolid | |
PersonChalkboardSolid | |
PersonCircleCheckSolid | |
PersonCircleExclamationSolid | |
PersonCircleMinusSolid | |
PersonCirclePlusSolid | |
PersonCircleQuestionSolid | |
PersonCircleXmarkSolid | |
PersonDiggingSolid | |
PersonDotsFromLineSolid | |
PersonDressBurstSolid | |
PersonDressSolid | |
PersonDrowningSolid | |
PersonFallingBurstSolid | |
PersonFallingSolid | |
PersonHalfDressSolid | |
PersonHarassingSolid | |
PersonHikingSolid | |
PersonMilitaryPointingSolid | |
PersonMilitaryRifleSolid | |
PersonMilitaryToPersonSolid | |
PersonPrayingSolid | |
PersonPregnantSolid | |
PersonRaysSolid | |
PersonRifleSolid | |
PersonRunningSolid | |
PersonShelterSolid | |
PersonSkatingSolid | |
PersonSkiingNordicSolid | |
PersonSkiingSolid | |
PersonSnowboardingSolid | |
PersonSolid | |
PersonSwimmingSolid | |
PersonThroughWindowSolid | |
PersonWalkingArrowLoopLeftSolid | |
PersonWalkingArrowRightSolid | |
PersonWalkingDashedLineArrowRightSolid | |
PersonWalkingLuggageSolid | |
PersonWalkingSolid | |
PersonWalkingWithCaneSolid | |
PesetaSignSolid | |
PesoSignSolid | |
PhabricatorBrands | |
PhoenixFrameworkBrands | |
PhoenixSquadronBrands | |
PhoneFlipSolid | |
PhoneSlashSolid | |
PhoneSolid | |
PhoneVolumeSolid | |
PhotoFilmSolid | |
PhpBrands | |
PiedPiperAltBrands | |
PiedPiperBrands | |
PiedPiperHatBrands | |
PiedPiperPpBrands | |
PiggyBankSolid | |
PillsSolid | |
PinterestBrands | |
PinterestPBrands | |
PixBrands | |
PixivBrands | |
PizzaSliceSolid | |
PlaceOfWorshipSolid | |
PlaneArrivalSolid | |
PlaneCircleCheckSolid | |
PlaneCircleExclamationSolid | |
PlaneCircleXmarkSolid | |
PlaneDepartureSolid | |
PlaneLockSolid | |
PlaneSlashSolid | |
PlaneSolid | |
PlaneUpSolid | |
PlantWiltSolid | |
PlateWheatSolid | |
PlaySolid | |
PlaystationBrands | |
PlugCircleBoltSolid | |
PlugCircleCheckSolid | |
PlugCircleExclamationSolid | |
PlugCircleMinusSolid | |
PlugCirclePlusSolid | |
PlugCircleXmarkSolid | |
PlugSolid | |
PlusMinusSolid | |
PlusSolid | |
PodcastSolid | |
PoopSolid | |
PooSolid | |
PooStormSolid | |
PowerOffSolid | |
PrescriptionBottleMedicalSolid | |
PrescriptionBottleSolid | |
PrescriptionSolid | |
PrintSolid | |
ProductHuntBrands | |
PSolid | |
PumpMedicalSolid | |
PumpSoapSolid | |
PushedBrands | |
PuzzlePieceSolid | |
PythonBrands | |
QqBrands | |
QrcodeSolid | |
QSolid | |
QuestionSolid | |
QuinscapeBrands | |
QuoraBrands | |
QuoteLeftSolid | |
QuoteRightSolid | |
RadiationSolid | |
RadioSolid | |
RainbowSolid | |
RankingStarSolid | |
RaspberryPiBrands | |
RavelryBrands | |
ReactBrands | |
ReacteuropeBrands | |
ReadmeBrands | |
RebelBrands | |
ReceiptSolid | |
RecordVinylSolid | |
RectangleAdSolid | |
RectangleListRegular | |
RectangleListSolid | |
RectangleXmarkRegular | |
RectangleXmarkSolid | |
RecycleSolid | |
RedditAlienBrands | |
RedditBrands | |
RedhatBrands | |
RedRiverBrands | |
RegisteredRegular | |
RegisteredSolid | |
RenrenBrands | |
RepeatSolid | |
ReplyAllSolid | |
ReplydBrands | |
ReplySolid | |
RepublicanSolid | |
ResearchgateBrands | |
ResolvingBrands | |
RestroomSolid | |
RetweetSolid | |
RevBrands | |
RibbonSolid | |
RightFromBracketSolid | |
RightLeftSolid | |
RightLongSolid | |
RightToBracketSolid | |
RingSolid | |
RoadBarrierSolid | |
RoadBridgeSolid | |
RoadCircleCheckSolid | |
RoadCircleExclamationSolid | |
RoadCircleXmarkSolid | |
RoadLockSolid | |
RoadSolid | |
RoadSpikesSolid | |
RobotSolid | |
RocketchatBrands | |
RocketSolid | |
RockrmsBrands | |
RotateLeftSolid | |
RotateRightSolid | |
RotateSolid | |
RouteSolid | |
RProjectBrands | |
RSolid | |
RssSolid | |
RubleSignSolid | |
RugSolid | |
RulerCombinedSolid | |
RulerHorizontalSolid | |
RulerSolid | |
RulerVerticalSolid | |
RupeeSignSolid | |
RupiahSignSolid | |
RustBrands | |
SackDollarSolid | |
SackXmarkSolid | |
SafariBrands | |
SailboatSolid | |
SalesforceBrands | |
SassBrands | |
SatelliteDishSolid | |
SatelliteSolid | |
ScaleBalancedSolid | |
ScaleUnbalancedFlipSolid | |
ScaleUnbalancedSolid | |
SchlixBrands | |
SchoolCircleCheckSolid | |
SchoolCircleExclamationSolid | |
SchoolCircleXmarkSolid | |
SchoolFlagSolid | |
SchoolLockSolid | |
SchoolSolid | |
ScissorsSolid | |
ScreenpalBrands | |
ScrewdriverSolid | |
ScrewdriverWrenchSolid | |
ScribdBrands | |
ScrollSolid | |
ScrollTorahSolid | |
SdCardSolid | |
SearchenginBrands | |
SectionSolid | |
SeedlingSolid | |
SellcastBrands | |
SellsyBrands | |
ServerSolid | |
ServicestackBrands | |
ShapesSolid | |
ShareFromSquareRegular | |
ShareFromSquareSolid | |
ShareNodesSolid | |
ShareSolid | |
SheetPlasticSolid | |
ShekelSignSolid | |
ShieldCatSolid | |
ShieldDogSolid | |
ShieldHalvedSolid | |
ShieldHeartSolid | |
ShieldSolid | |
ShieldVirusSolid | |
ShipSolid | |
ShirtsinbulkBrands | |
ShirtSolid | |
ShoelaceBrands | |
ShoePrintsSolid | |
ShopifyBrands | |
ShopLockSolid | |
ShopSlashSolid | |
ShopSolid | |
ShopwareBrands | |
ShowerSolid | |
ShrimpSolid | |
ShuffleSolid | |
ShuttleSpaceSolid | |
SignalMessengerBrands | |
SignalSolid | |
SignatureSolid | |
SignHangingSolid | |
SignsPostSolid | |
SimCardSolid | |
SimplybuiltBrands | |
SinkSolid | |
SistrixBrands | |
SitemapSolid | |
SithBrands | |
SitroxBrands | |
SketchBrands | |
SkullCrossbonesSolid | |
SkullSolid | |
SkyatlasBrands | |
SkypeBrands | |
SlackBrands | |
SlashSolid | |
SleighSolid | |
SlidersSolid | |
SlideshareBrands | |
SmogSolid | |
SmokingSolid | |
SnapchatBrands | |
SnowflakeRegular | |
SnowflakeSolid | |
SnowmanSolid | |
SnowplowSolid | |
SoapSolid | |
SocksSolid | |
SolarPanelSolid | |
SortDownSolid | |
SortSolid | |
SortUpSolid | |
SoundcloudBrands | |
SourcetreeBrands | |
SpaceAwesomeBrands | |
SpaghettiMonsterFlyingSolid | |
SpaSolid | |
SpeakapBrands | |
SpeakerDeckBrands | |
SpellCheckSolid | |
SpiderSolid | |
SpinnerSolid | |
SplotchSolid | |
SpoonSolid | |
SpotifyBrands | |
SprayCanSolid | |
SprayCanSparklesSolid | |
SquareArrowUpRightSolid | |
SquareBehanceBrands | |
SquareCaretDownRegular | |
SquareCaretDownSolid | |
SquareCaretLeftRegular | |
SquareCaretLeftSolid | |
SquareCaretRightRegular | |
SquareCaretRightSolid | |
SquareCaretUpRegular | |
SquareCaretUpSolid | |
SquareCheckRegular | |
SquareCheckSolid | |
SquareDribbbleBrands | |
SquareEnvelopeSolid | |
SquareFacebookBrands | |
SquareFontAwesomeBrands | |
SquareFontAwesomeStrokeBrands | |
SquareFullRegular | |
SquareFullSolid | |
SquareGitBrands | |
SquareGithubBrands | |
SquareGitlabBrands | |
SquareGooglePlusBrands | |
SquareHackerNewsBrands | |
SquareHSolid | |
SquareInstagramBrands | |
SquareJsBrands | |
SquareLastfmBrands | |
SquareLetterboxdBrands | |
SquareMinusRegular | |
SquareMinusSolid | |
SquareNfiSolid | |
SquareOdnoklassnikiBrands | |
SquareParkingSolid | |
SquarePenSolid | |
SquarePersonConfinedSolid | |
SquarePhoneFlipSolid | |
SquarePhoneSolid | |
SquarePiedPiperBrands | |
SquarePinterestBrands | |
SquarePlusRegular | |
SquarePlusSolid | |
SquarePollHorizontalSolid | |
SquarePollVerticalSolid | |
SquareRedditBrands | |
SquareRegular | |
SquareRootVariableSolid | |
SquareRssSolid | |
SquareShareNodesSolid | |
SquareSnapchatBrands | |
SquareSolid | |
SquarespaceBrands | |
SquareSteamBrands | |
SquareThreadsBrands | |
SquareTumblrBrands | |
SquareTwitterBrands | |
SquareUpRightSolid | |
SquareUpworkBrands | |
SquareViadeoBrands | |
SquareVimeoBrands | |
SquareVirusSolid | |
SquareWebAwesomeBrands | |
SquareWebAwesomeStrokeBrands | |
SquareWhatsappBrands | |
SquareXingBrands | |
SquareXmarkSolid | |
SquareXTwitterBrands | |
SquareYoutubeBrands | |
SSolid | |
StackExchangeBrands | |
StackOverflowBrands | |
StackpathBrands | |
StaffSnakeSolid | |
StairsSolid | |
StampSolid | |
StaplerSolid | |
StarAndCrescentSolid | |
StarHalfRegular | |
StarHalfSolid | |
StarHalfStrokeRegular | |
StarHalfStrokeSolid | |
StarOfDavidSolid | |
StarOfLifeSolid | |
StarRegular | |
StarSolid | |
StaylinkedBrands | |
SteamBrands | |
SteamSymbolBrands | |
SterlingSignSolid | |
StethoscopeSolid | |
StickerMuleBrands | |
StopSolid | |
Stopwatch20Solid | |
StopwatchSolid | |
StoreSlashSolid | |
StoreSolid | |
StravaBrands | |
StreetViewSolid | |
StrikethroughSolid | |
StripeBrands | |
StripeSBrands | |
StroopwafelSolid | |
StubberBrands | |
StudiovinariBrands | |
StumbleuponBrands | |
StumbleuponCircleBrands | |
SubscriptSolid | |
SuitcaseMedicalSolid | |
SuitcaseRollingSolid | |
SuitcaseSolid | |
SunPlantWiltSolid | |
SunRegular | |
SunSolid | |
SuperpowersBrands | |
SuperscriptSolid | |
SuppleBrands | |
SuseBrands | |
SwatchbookSolid | |
SwiftBrands | |
SymfonyBrands | |
SynagogueSolid | |
SyringeSolid | |
TableCellsColumnLockSolid | |
TableCellsLargeSolid | |
TableCellsRowLockSolid | |
TableCellsSolid | |
TableColumnsSolid | |
TableListSolid | |
TableSolid | |
TabletButtonSolid | |
TableTennisPaddleBallSolid | |
TabletScreenButtonSolid | |
TabletSolid | |
TabletsSolid | |
TachographDigitalSolid | |
TagSolid | |
TagsSolid | |
TapeSolid | |
TarpDropletSolid | |
TarpSolid | |
TaxiSolid | |
TeamspeakBrands | |
TeethOpenSolid | |
TeethSolid | |
TelegramBrands | |
TemperatureArrowDownSolid | |
TemperatureArrowUpSolid | |
TemperatureEmptySolid | |
TemperatureFullSolid | |
TemperatureHalfSolid | |
TemperatureHighSolid | |
TemperatureLowSolid | |
TemperatureQuarterSolid | |
TemperatureThreeQuartersSolid | |
TencentWeiboBrands | |
TengeSignSolid | |
TentArrowDownToLineSolid | |
TentArrowLeftRightSolid | |
TentArrowsDownSolid | |
TentArrowTurnLeftSolid | |
TentSolid | |
TentsSolid | |
TerminalSolid | |
TextHeightSolid | |
TextSlashSolid | |
TextWidthSolid | |
ThemecoBrands | |
ThemeisleBrands | |
TheRedYetiBrands | |
ThermometerSolid | |
ThinkPeaksBrands | |
ThreadsBrands | |
ThumbsDownRegular | |
ThumbsDownSolid | |
ThumbsUpRegular | |
ThumbsUpSolid | |
ThumbtackSolid | |
TicketSimpleSolid | |
TicketSolid | |
TiktokBrands | |
TimelineSolid | |
ToggleOffSolid | |
ToggleOnSolid | |
ToiletPaperSlashSolid | |
ToiletPaperSolid | |
ToiletPortableSolid | |
ToiletSolid | |
ToiletsPortableSolid | |
ToolboxSolid | |
ToothSolid | |
ToriiGateSolid | |
TornadoSolid | |
TowerBroadcastSolid | |
TowerCellSolid | |
TowerObservationSolid | |
TractorSolid | |
TradeFederationBrands | |
TrademarkSolid | |
TrafficLightSolid | |
TrailerSolid | |
TrainSolid | |
TrainSubwaySolid | |
TrainTramSolid | |
TransgenderSolid | |
TrashArrowUpSolid | |
TrashCanArrowUpSolid | |
TrashCanRegular | |
TrashCanSolid | |
TrashSolid | |
TreeCitySolid | |
TreeSolid | |
TrelloBrands | |
TriangleExclamationSolid | |
TrophySolid | |
TrowelBricksSolid | |
TrowelSolid | |
TruckArrowRightSolid | |
TruckDropletSolid | |
TruckFastSolid | |
TruckFieldSolid | |
TruckFieldUnSolid | |
TruckFrontSolid | |
TruckMedicalSolid | |
TruckMonsterSolid | |
TruckMovingSolid | |
TruckPickupSolid | |
TruckPlaneSolid | |
TruckRampBoxSolid | |
TruckSolid | |
TSolid | |
TtySolid | |
TumblrBrands | |
TurkishLiraSignSolid | |
TurnDownSolid | |
TurnUpSolid | |
TvSolid | |
TwitchBrands | |
TwitterBrands | |
Typo3Brands | |
UberBrands | |
UbuntuBrands | |
UikitBrands | |
UmbracoBrands | |
UmbrellaBeachSolid | |
UmbrellaSolid | |
UnchartedBrands | |
UnderlineSolid | |
UniregistryBrands | |
UnityBrands | |
UniversalAccessSolid | |
UnlockKeyholeSolid | |
UnlockSolid | |
UnsplashBrands | |
UntappdBrands | |
UpDownLeftRightSolid | |
UpDownSolid | |
UploadSolid | |
UpLongSolid | |
UpRightAndDownLeftFromCenterSolid | |
UpRightFromSquareSolid | |
UpsBrands | |
UpworkBrands | |
UsbBrands | |
UserAstronautSolid | |
UserCheckSolid | |
UserClockSolid | |
UserDoctorSolid | |
UserGearSolid | |
UserGraduateSolid | |
UserGroupSolid | |
UserInjuredSolid | |
UserLargeSlashSolid | |
UserLargeSolid | |
UserLockSolid | |
UserMinusSolid | |
UserNinjaSolid | |
UserNurseSolid | |
UserPenSolid | |
UserPlusSolid | |
UserRegular | |
UsersBetweenLinesSolid | |
UserSecretSolid | |
UsersGearSolid | |
UserShieldSolid | |
UserSlashSolid | |
UsersLineSolid | |
UserSolid | |
UsersRaysSolid | |
UsersRectangleSolid | |
UsersSlashSolid | |
UsersSolid | |
UsersViewfinderSolid | |
UserTagSolid | |
UserTieSolid | |
UserXmarkSolid | |
USolid | |
UspsBrands | |
UssunnahBrands | |
UtensilsSolid | |
VaadinBrands | |
VanShuttleSolid | |
VaultSolid | |
VectorSquareSolid | |
VenusDoubleSolid | |
VenusMarsSolid | |
VenusSolid | |
VestPatchesSolid | |
VestSolid | |
ViacoinBrands | |
ViadeoBrands | |
VialCircleCheckSolid | |
VialSolid | |
VialsSolid | |
VialVirusSolid | |
ViberBrands | |
VideoSlashSolid | |
VideoSolid | |
ViharaSolid | |
VimeoBrands | |
VimeoVBrands | |
VineBrands | |
VirusCovidSlashSolid | |
VirusCovidSolid | |
VirusesSolid | |
VirusSlashSolid | |
VirusSolid | |
VkBrands | |
VnvBrands | |
VoicemailSolid | |
VolcanoSolid | |
VolleyballSolid | |
VolumeHighSolid | |
VolumeLowSolid | |
VolumeOffSolid | |
VolumeXmarkSolid | |
VrCardboardSolid | |
VSolid | |
VuejsBrands | |
WalkieTalkieSolid | |
WalletSolid | |
WandMagicSolid | |
WandMagicSparklesSolid | |
WandSparklesSolid | |
WarehouseSolid | |
WatchmanMonitoringBrands | |
WaterLadderSolid | |
WaterSolid | |
WaveSquareSolid | |
WazeBrands | |
WebAwesomeBrands | |
WebflowBrands | |
WeeblyBrands | |
WeiboBrands | |
WeightHangingSolid | |
WeightScaleSolid | |
WeixinBrands | |
WhatsappBrands | |
WheatAwnCircleExclamationSolid | |
WheatAwnSolid | |
WheelchairMoveSolid | |
WheelchairSolid | |
WhiskeyGlassSolid | |
WhmcsBrands | |
WifiSolid | |
WikipediaWBrands | |
WindowMaximizeRegular | |
WindowMaximizeSolid | |
WindowMinimizeRegular | |
WindowMinimizeSolid | |
WindowRestoreRegular | |
WindowRestoreSolid | |
WindowsBrands | |
WindSolid | |
WineBottleSolid | |
WineGlassEmptySolid | |
WineGlassSolid | |
WirsindhandwerkBrands | |
WixBrands | |
WizardsOfTheCoastBrands | |
WoduBrands | |
WolfPackBattalionBrands | |
WonSignSolid | |
WordpressBrands | |
WordpressSimpleBrands | |
WormSolid | |
WpbeginnerBrands | |
WpexplorerBrands | |
WpformsBrands | |
WpressrBrands | |
WrenchSolid | |
WSolid | |
XboxBrands | |
XingBrands | |
XmarksLinesSolid | |
XmarkSolid | |
XRaySolid | |
XSolid | |
XTwitterBrands | |
YahooBrands | |
YammerBrands | |
YandexBrands | |
YandexInternationalBrands | |
YarnBrands | |
YCombinatorBrands | |
YelpBrands | |
YenSignSolid | |
YinYangSolid | |
YoastBrands | |
YoutubeBrands | |
YSolid | |
ZhihuBrands | |
ZSolid |
Methods
close
closes all tip windows displaying this tip