bitwarden-mobile/src/Core/BitwardenIcons.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

119 lines
5.3 KiB
C#
Raw Normal View History

2022-01-21 10:31:03 +01:00
namespace Bit.Core
{
public static class BitwardenIcons
{
public const string User = "\xe900";
public const string UserF = "\xe901";
public const string Key = "\xe902";
public const string ShareSquare = "\xe903";
public const string Hashtag = "\xe904";
public const string Clone = "\xe905";
public const string ListAlt = "\xe906";
public const string IdCard = "\xe907";
public const string CreditCard = "\xe908";
public const string Globe = "\xe909";
public const string StickyNote = "\xe90a";
public const string Folder = "\xe90b";
public const string Lock = "\xe90c";
public const string LockF = "\xe90d";
public const string Generate = "\xe90e";
public const string GenerateF = "\xe90f";
public const string Cog = "\xe910";
public const string CogF = "\xe911";
public const string CheckCircle = "\xe912";
public const string Eye = "\xe913";
public const string PencilSquare = "\xe914";
public const string Bookmark = "\xe915";
public const string Files = "\xe916";
public const string Trash = "\xe917";
public const string Plus = "\xe918";
public const string Star = "\xe919";
public const string List = "\xe91a";
public const string AngleRight = "\xe91b";
public const string ExternalLink = "\xe91c";
public const string Refresh = "\xe91d";
public const string Search = "\xe91f";
public const string Filter = "\xe920";
public const string PlusCircle = "\xe921";
public const string UserCircle = "\xe922";
public const string QuestionCircle = "\xe923";
public const string Cogs = "\xe924";
public const string MinusCircle = "\xe925";
public const string Send = "\xe926";
public const string SendF = "\xe927";
public const string Download = "\xe928";
public const string Pencil = "\xe929";
public const string SignOut = "\xe92a";
public const string Share = "\xe92b";
public const string Clock = "\xe92c";
public const string AngleDown = "\xe92d";
public const string CaretDown = "\xe92e";
public const string Square = "\xe92f";
public const string Collection = "\xe930";
public const string Bank = "\xe931";
public const string Shield = "\xe932";
public const string Stop = "\xe933";
public const string PlusSquare = "\xe934";
public const string Save = "\xe935";
public const string SignIn = "\xe936";
public const string Spinner = "\xe937";
public const string Paypal = "\xe938";
public const string Dollar = "\xe939";
public const string Check = "\xe93a";
public const string CheckSquare = "\xe93b";
public const string MinusSquare = "\xe93c";
public const string Close = "\xe93d";
public const string FolderOpenF = "\xe93e";
public const string Paperclip = "\xe93f";
public const string Bitcoin = "\xe940";
public const string Cut = "\xe941";
public const string Frown = "\xe942";
public const string FolderOpen = "\xe943";
public const string Android = "\xe944";
public const string Apple = "\xe945";
public const string Bug = "\xe946";
public const string ChainBroken = "\xe947";
public const string Dashboard = "\xe948";
public const string Envelope = "\xe949";
public const string ExclamationCircle = "\xe94a";
public const string ExclamationTriangle = "\xe94b";
public const string CaretRight = "\xe94c";
public const string Facebook = "\xe94d";
public const string FilePdf = "\xe94e";
public const string FileText = "\xe94f";
public const string Github = "\xe950";
public const string Google = "\xe951";
public const string InfoCircle = "\xe952";
public const string Lightbulb = "\xe953";
public const string Link = "\xe954";
public const string Linkedin = "\xe955";
public const string Linux = "\xe956";
public const string LongArrowRight = "\xe957";
public const string Money = "\xe958";
public const string Play = "\xe959";
public const string Reddit = "\xe95a";
public const string RefreshTab = "\xe95b";
public const string Sitemap = "\xe95c";
public const string Sliders = "\xe95d";
public const string Tag = "\xe95e";
public const string ThumbTack = "\xe95f";
public const string ThumbsUp = "\xe960";
public const string Twitter = "\xe961";
public const string Unlock = "\xe962";
public const string Users = "\xe963";
public const string Windows = "\xe964";
public const string Wrench = "\xe965";
public const string Youtube = "\xe966";
public const string Ban = "\xe967";
public const string Camera = "\xe968";
public const string ChevronUp = "\xe969";
public const string Desktop = "\xe96a";
public const string EyeSlash = "\xe96d";
public const string File = "\xe96e";
public const string Paste = "\xe96f";
public const string ViewCellMenu = "\xe5d3";
[SG-166] Two Step Login - Feature Branch (#2157) * [SG-166] Update fonts to have necessary icons * [SG-166] Add new custom view to hold a button with a font icon and a label. * [SG-166] Two Step login flow - Mobile (#2153) * [SG-166] Add UI elements to Home and Login pages. Change VMs to function with new UI. Add new string resources. * [SG-166] Pass email parameter from Home to Login page. * [SG-166] Pass email to password hint page. * [SG-166] Remove remembered email from account switching. * [SG-166] Add GetKnownDevice endpoint to ApiService * [SG-166] Fix GetKnownDevice string uri * [SG-166] Add Renderer for IconLabel control. Add RemoveFontPadding bool property. * [SG-166] include IconLabelRenderer in Android csproj file * [SG-166] Add new control. Add styles for the control. * [SG-166] Add verification to start login if email is remembered * [SG-166] Pass default email to hint page * [SG-166] Login with device button only shows if it is a known device. * [SG-166] Change Remember Email to Remember me. Change Check to Switch control. * [SG-166] Add command to button for SSO Login * Revert "[SG-166] Update fonts to have necessary icons" This reverts commit 472b541cef2efa874e65035fed4952a817bdebb1. * [SG-166] Remove IconLabel Android renderer. Add RemoveFontPadding effect. * [SG-166] Update font with new device and suitcase icon * [SG-166] Fix RemoveFontPadding effect * [SG-166] Remove unused property in IconLabel * [SG-166] Fix formatting on IconLabelButton.xaml * [SG-166] Update padding effect to IconLabel * [SG-166] Add control variable to run code once on create * [SG-166] Add email validation before continue * [SG-166] Refactor icons * [SG-166] Update iOS Extension font * [SG-166] Remove HomePage login btn step * [SG-166] Make clickable area smaller * [SG-166] Fix hint filled by default * [SG-166] Fix IconButton font issue * [SG-166] Fix iOS extension * [SG-166] Move style to Base instead of platforms * [SG-166] Fix layout for IconLabelButton * [SG-166] Switched EventHandler for Command * [SG-166] Removed event handler * [SG-166] Fix LoginPage layout options * [SG-166] Fix extensions Login null email * [SG-166] Move remembered email logic to viewmodel * [SG-166] Protect method and show dialog in case of error * [SG-166] Rename of GetKnownDevice api method * [SG-166] rename text resource key name * [SG-166] Add close button to iOS extension * [SG-166] Switch event handlers for commands * [SG-166] Change commands UI thread invocation. * [SG-166] Remove Login with device button from the UI * [SG-166] Fixed appOptions and close button on iOS Extensions
2022-10-29 00:10:41 +02:00
public const string Device = "\xe986";
public const string Suitcase = "\xe98c";
2022-01-21 10:31:03 +01:00
}
}