You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gristlabs_grist-core/app/client/ui2018/IconList.ts

274 lines
4.0 KiB

export type IconName = "ChartArea" |
"ChartBar" |
"ChartDonut" |
"ChartKaplan" |
"ChartLine" |
"ChartPie" |
"TypeCard" |
"TypeCardList" |
"TypeCell" |
"TypeChart" |
"TypeCustom" |
"TypeDetails" |
"TypeTable" |
"FieldAny" |
"FieldAttachment" |
"FieldCheckbox" |
"FieldChoice" |
"FieldColumn" |
"FieldDate" |
"FieldDateTime" |
"FieldFunction" |
"FieldFunctionEqual" |
"FieldInteger" |
"FieldLink" |
"FieldNumeric" |
"FieldReference" |
"FieldSpinner" |
"FieldSwitcher" |
"FieldTable" |
"FieldText" |
"FieldTextbox" |
"FieldToggle" |
"LoginStreamline" |
"LoginUnify" |
"LoginVisualize" |
"GoogleLogo" |
"GristLogo" |
"ThumbPreview" |
"AddUser" |
"BarcodeQR" |
"BarcodeQR2" |
"CenterAlign" |
"Chat" |
"Code" |
"Collapse" |
"Convert" |
"Copy" |
"CrossBig" |
"CrossSmall" |
"Database" |
"Dots" |
"Download" |
"DragDrop" |
"Dropdown" |
"DropdownUp" |
"Empty" |
"Expand" |
"EyeHide" |
"EyeShow" |
"Feedback" |
"Filter" |
"FilterSimple" |
"Fireworks" |
"Flag" |
"Folder" |
"FontBold" |
"FontItalic" |
"FontStrikethrough" |
"FontUnderline" |
"FunctionResult" |
"Grow" |
"Help" |
"Home" |
"Idea" |
"Import" |
"ImportArrow" |
"Info" |
"LeftAlign" |
"Lock" |
"Log" |
"Mail" |
"Maximize" |
"Memo" |
"Message" |
"Minimize" |
"Minus" |
"MobileChat" |
"MobileChat2" |
"NewNotification" |
"Notification" |
"Offline" |
"Page" |
"PanelLeft" |
"PanelRight" |
"Pencil" |
"PinBig" |
"PinSmall" |
"PinTilted" |
"Pivot" |
"PivotLight" |
"Plus" |
"Popup" |
"Public" |
"PublicColor" |
"PublicFilled" |
"Redo" |
"Remove" |
"Repl" |
"ResizePanel" |
"Revert" |
"RightAlign" |
"Script" |
"Search" |
"Settings" |
"Share" |
"Sort" |
"Sparks" |
"Tick" |
"TickSolid" |
"Undo" |
"Validation" |
"Video" |
"Warning" |
"Widget" |
"Wrap" |
"Zoom" |
"UseChart" |
"UseEducate" |
"UseFinance" |
"UseHr" |
"UseMedia" |
"UseMonitor" |
"UseOther" |
"UseProduct" |
"UseSales" |
"UseScience";
export const IconList: IconName[] = ["ChartArea",
"ChartBar",
"ChartDonut",
"ChartKaplan",
"ChartLine",
"ChartPie",
"TypeCard",
"TypeCardList",
"TypeCell",
"TypeChart",
"TypeCustom",
"TypeDetails",
"TypeTable",
"FieldAny",
"FieldAttachment",
"FieldCheckbox",
"FieldChoice",
"FieldColumn",
"FieldDate",
"FieldDateTime",
"FieldFunction",
"FieldFunctionEqual",
"FieldInteger",
"FieldLink",
"FieldNumeric",
"FieldReference",
"FieldSpinner",
"FieldSwitcher",
"FieldTable",
"FieldText",
"FieldTextbox",
"FieldToggle",
"LoginStreamline",
"LoginUnify",
"LoginVisualize",
"GoogleLogo",
"GristLogo",
"ThumbPreview",
"AddUser",
"BarcodeQR",
"BarcodeQR2",
"CenterAlign",
"Chat",
"Code",
"Collapse",
"Convert",
"Copy",
"CrossBig",
"CrossSmall",
"Database",
"Dots",
"Download",
"DragDrop",
"Dropdown",
"DropdownUp",
"Empty",
"Expand",
"EyeHide",
"EyeShow",
"Feedback",
"Filter",
"FilterSimple",
"Fireworks",
"Flag",
"Folder",
"FontBold",
"FontItalic",
"FontStrikethrough",
"FontUnderline",
"FunctionResult",
"Grow",
"Help",
"Home",
"Idea",
"Import",
"ImportArrow",
"Info",
"LeftAlign",
"Lock",
"Log",
"Mail",
"Maximize",
"Memo",
"Message",
"Minimize",
"Minus",
"MobileChat",
"MobileChat2",
"NewNotification",
"Notification",
"Offline",
"Page",
"PanelLeft",
"PanelRight",
"Pencil",
"PinBig",
"PinSmall",
"PinTilted",
"Pivot",
"PivotLight",
"Plus",
"Popup",
"Public",
"PublicColor",
"PublicFilled",
"Redo",
"Remove",
"Repl",
"ResizePanel",
"Revert",
"RightAlign",
"Script",
"Search",
"Settings",
"Share",
"Sort",
"Sparks",
"Tick",
"TickSolid",
"Undo",
"Validation",
"Video",
"Warning",
"Widget",
"Wrap",
"Zoom",
"UseChart",
"UseEducate",
"UseFinance",
"UseHr",
"UseMedia",
"UseMonitor",
"UseOther",
"UseProduct",
"UseSales",
"UseScience"];