Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
master
Go to file
 
 
Cannot retrieve contributors at this time
355 lines (355 sloc) 4.68 KB
/**
* Enum for all icons supported by Office UI Fabric. Enums in JavaScript are always number indexed, but this enum is
* intended to be used as a striangular.
*
* @readonly
* @enum {string}
* @usage
*
* This is used to generate the string that you pass into the <uif-icon /> directive. Specifically, the string is passed
* to the `uif-type` attribute. To evaluate the enum value as a string:
*
* let icon: string = IconEnum[IconEnum.alert];
*/
export enum IconEnum {
alert,
alert2,
alertOutline,
arrowDown,
arrowDown2,
arrowDownLeft,
arrowDownRight,
arrowLeft,
arrowRight,
arrowUp,
arrowUp2,
arrowUpLeft,
arrowUpRight,
ascending,
at,
attachment,
bag,
balloon,
bell,
boards,
bold,
bookmark,
books,
briefcase,
bundle,
cake,
calendar,
calendarDay,
calendarPublic,
calendarWeek,
calendarWorkWeek,
camera,
car,
caretDown,
caretDownLeft,
caretDownOutline,
caretDownRight,
caretLeft,
caretLeftOutline,
caretRight,
caretRightOutline,
caretUp,
caretUpLeft,
caretUpOutline,
caretUpRight,
cart,
cat,
chart,
chat,
chatAdd,
check,
checkbox,
checkboxCheck,
checkboxEmpty,
checkboxMixed,
checkPeople,
chevronDown,
chevronLeft,
chevronRight,
chevronsDown,
chevronsLeft,
chevronsRight,
chevronsUp,
chevronThickDown,
chevronThickLeft,
chevronThickRight,
chevronThickUp,
chevronThinDown,
chevronThinLeft,
chevronThinRight,
chevronThinUp,
chevronUp,
circleBall,
circleBalloons,
circleCar,
circleCat,
circleCoffee,
circleDog,
circleEmpty,
circleFill,
circleFilled,
circleHalfFilled,
circleInfo,
circleLightning,
circlePill,
circlePlane,
circlePlus,
circlePoodle,
circleUnfilled,
classNotebook,
classroom,
clock,
clutter,
coffee,
collapse,
conflict,
contact,
contactForm,
contactPublic,
copy,
creditCard,
creditCardOutline,
dashboard,
descending,
desktop,
deviceWipe,
dialpad,
directions,
document,
documentAdd,
documentForward,
documentLandscape,
documentPDF,
documentReply,
documents,
documentSearch,
dog,
dogAlt,
dot,
download,
drm,
drop,
dropdown,
editBox,
ellipsis,
embed,
event,
eventCancel,
eventInfo,
eventRecurring,
eventShare,
exclamation,
expand,
eye,
favorites,
fax,
fieldMail,
fieldNumber,
fieldText,
fieldTextBox,
fileDocument,
fileImage,
filePDF,
filter,
filterClear,
firstAid,
flag,
folder,
folderMove,
folderPublic,
folderSearch,
fontColor,
fontDecrease,
fontIncrease,
frowny,
fullscreen,
gear,
glasses,
globe,
graph,
group,
header,
heart,
heartEmpty,
hide,
home,
inboxCheck,
info,
infoCircle,
italic,
key,
late,
lifesaver,
lifesaverLock,
lightBulb,
lightning,
link,
linkRemove,
listBullets,
listCheck,
listCheckbox,
listGroup,
listGroup2,
listNumbered,
lock,
mail,
mailCheck,
mailDown,
mailEdit,
mailEmpty,
mailError,
mailOpen,
mailPause,
mailPublic,
mailRead,
mailSend,
mailSync,
mailUnread,
mapMarker,
meal,
menu,
menu2,
merge,
metadata,
microphone,
miniatures,
minus,
mobile,
money,
move,
multiChoice,
music,
navigate,
new,
newsfeed,
note,
notebook,
noteEdit,
noteForward,
noteReply,
notRecurring,
onedrive,
onlineAdd,
onlineJoin,
oofReply,
org,
page,
paint,
panel,
partner,
pause,
pencil,
people,
peopleAdd,
peopleCheck,
peopleError,
peoplePause,
peopleRemove,
peopleSecurity,
peopleSync,
person,
personAdd,
personRemove,
phone,
phoneAdd,
phoneTransfer,
picture,
pictureAdd,
pictureEdit,
pictureRemove,
pill,
pinDown,
pinLeft,
placeholder,
plane,
play,
plus,
plus2,
pointItem,
popout,
post,
print,
protectionCenter,
question,
questionReverse,
quote,
radioButton,
reactivate,
receiptCheck,
receiptForward,
receiptReply,
refresh,
reload,
reply,
replyAll,
replyAllAlt,
replyAlt,
ribbon,
room,
save,
scheduling,
search,
section,
sections,
settings,
share,
shield,
sites,
smiley,
soccer,
socialListening,
sort,
sortLines,
split,
star,
starEmpty,
stopwatch,
story,
styleRemove,
subscribe,
sun,
sunAdd,
sunQuestion,
support,
table,
tablet,
tag,
taskRecurring,
tasks,
teamwork,
text,
textBox,
tile,
timeline,
today,
toggle,
toggleMiddle,
touch,
trash,
triangleDown,
triangleEmptyDown,
triangleEmptyLeft,
triangleEmptyRight,
triangleEmptyUp,
triangleLeft,
triangleRight,
triangleUp,
trophy,
underline,
unsubscribe,
upload,
video,
voicemail,
voicemailForward,
voicemailReply,
waffle,
work,
wrench,
x,
xCircle
}
You can’t perform that action at this time.