diff --git a/packages/icons/src/__snapshots__/index.test.js.snap b/packages/icons/src/__snapshots__/index.test.js.snap
index 67854b178c..3f80258349 100644
--- a/packages/icons/src/__snapshots__/index.test.js.snap
+++ b/packages/icons/src/__snapshots__/index.test.js.snap
@@ -1202,8 +1202,8 @@ exports[`icons/index renders with no props 71`] = `
`;
@@ -5609,3 +5609,71 @@ exports[`icons/index renders with no props 330`] = `
width="24px"
/>
`;
+
+exports[`icons/index renders with no props 331`] = `
+.emotion-0 {
+ fill: white;
+}
+
+.emotion-0 > * {
+ fill: white;
+}
+
+
+`;
+
+exports[`icons/index renders with no props 332`] = `
+.emotion-0 {
+ fill: white;
+}
+
+.emotion-0 > * {
+ fill: white;
+}
+
+
+`;
+
+exports[`icons/index renders with no props 333`] = `
+.emotion-0 {
+ fill: white;
+}
+
+.emotion-0 > * {
+ fill: white;
+}
+
+
+`;
+
+exports[`icons/index renders with no props 334`] = `
+.emotion-0 {
+ fill: white;
+}
+
+.emotion-0 > * {
+ fill: white;
+}
+
+
+`;
diff --git a/packages/icons/src/icons/information-dense/add.svg b/packages/icons/src/icons/information-dense/add.svg
index 2722724be7..b150637afe 100644
--- a/packages/icons/src/icons/information-dense/add.svg
+++ b/packages/icons/src/icons/information-dense/add.svg
@@ -1 +1,3 @@
-
\ No newline at end of file
+
diff --git a/packages/icons/src/icons/information-dense/data-refresh.svg b/packages/icons/src/icons/information-dense/data-refresh.svg
new file mode 100644
index 0000000000..9f8dee89ed
--- /dev/null
+++ b/packages/icons/src/icons/information-dense/data-refresh.svg
@@ -0,0 +1,11 @@
+
diff --git a/packages/icons/src/icons/information-dense/remove.svg b/packages/icons/src/icons/information-dense/remove.svg
new file mode 100644
index 0000000000..62e37fc6a6
--- /dev/null
+++ b/packages/icons/src/icons/information-dense/remove.svg
@@ -0,0 +1,3 @@
+
diff --git a/packages/icons/src/icons/regular/data-refresh.svg b/packages/icons/src/icons/regular/data-refresh.svg
new file mode 100644
index 0000000000..d2ba0db6e5
--- /dev/null
+++ b/packages/icons/src/icons/regular/data-refresh.svg
@@ -0,0 +1,4 @@
+
diff --git a/packages/icons/src/icons/regular/remove.svg b/packages/icons/src/icons/regular/remove.svg
new file mode 100644
index 0000000000..59e1588983
--- /dev/null
+++ b/packages/icons/src/icons/regular/remove.svg
@@ -0,0 +1,3 @@
+
diff --git a/packages/icons/src/icons/size12/help.svg b/packages/icons/src/icons/size12/help.svg
new file mode 100644
index 0000000000..c06a8db6b2
--- /dev/null
+++ b/packages/icons/src/icons/size12/help.svg
@@ -0,0 +1,3 @@
+
diff --git a/packages/icons/src/icons/ui-controls/ellipsis-m.svg b/packages/icons/src/icons/ui-controls/ellipsis-m.svg
new file mode 100644
index 0000000000..4c0461d3a9
--- /dev/null
+++ b/packages/icons/src/icons/ui-controls/ellipsis-m.svg
@@ -0,0 +1,5 @@
+
diff --git a/packages/icons/src/icons/ui-controls/ellipsis-s.svg b/packages/icons/src/icons/ui-controls/ellipsis-s.svg
new file mode 100644
index 0000000000..08c6e1b262
--- /dev/null
+++ b/packages/icons/src/icons/ui-controls/ellipsis-s.svg
@@ -0,0 +1,5 @@
+
diff --git a/packages/icons/src/icons/ui-controls/ellipsis-xs.svg b/packages/icons/src/icons/ui-controls/ellipsis-xs.svg
new file mode 100644
index 0000000000..1a7bc5a9e5
--- /dev/null
+++ b/packages/icons/src/icons/ui-controls/ellipsis-xs.svg
@@ -0,0 +1,5 @@
+
diff --git a/packages/icons/src/index.js b/packages/icons/src/index.js
index 9ab11d6d63..a44062a47e 100644
--- a/packages/icons/src/index.js
+++ b/packages/icons/src/index.js
@@ -3,6 +3,7 @@ import { cx, css } from "emotion";
import React from "react";
import { ThemeContext } from "@weave-design/theme-context";
import stylesheet from "./icon.stylesheet";
+import Help12SVG from "./icons/size12/help.svg";
import Error12SVG from "./icons/size12/error.svg";
import Complete12SVG from "./icons/size12/complete.svg";
import Alert12SVG from "./icons/size12/alert.svg";
@@ -14,6 +15,9 @@ import HoldXsUISVG from "./icons/ui-controls/hold-xs.svg";
import HoldSUISVG from "./icons/ui-controls/hold-s.svg";
import HamburgerDefaultUISVG from "./icons/ui-controls/hamburger-default.svg";
import HamburgerCloseUISVG from "./icons/ui-controls/hamburger-close.svg";
+import EllipsisXsUISVG from "./icons/ui-controls/ellipsis-xs.svg";
+import EllipsisSUISVG from "./icons/ui-controls/ellipsis-s.svg";
+import EllipsisMUISVG from "./icons/ui-controls/ellipsis-m.svg";
import CloseXsUISVG from "./icons/ui-controls/close-xs.svg";
import CloseSUISVG from "./icons/ui-controls/close-s.svg";
import CloseMUISVG from "./icons/ui-controls/close-m.svg";
@@ -70,6 +74,7 @@ import Save16SVG from "./icons/information-dense/save.svg";
import SaveAs16SVG from "./icons/information-dense/save-as.svg";
import Report16SVG from "./icons/information-dense/report.svg";
import Rename16SVG from "./icons/information-dense/rename.svg";
+import Remove16SVG from "./icons/information-dense/remove.svg";
import Redo16SVG from "./icons/information-dense/redo.svg";
import Recommend16SVG from "./icons/information-dense/recommend.svg";
import RecentFile16SVG from "./icons/information-dense/recent-file.svg";
@@ -162,6 +167,7 @@ import Devices16SVG from "./icons/information-dense/devices.svg";
import DeviceTablet16SVG from "./icons/information-dense/device-tablet.svg";
import DeviceMobile16SVG from "./icons/information-dense/device-mobile.svg";
import DeviceDesktop16SVG from "./icons/information-dense/device-desktop.svg";
+import DataRefresh16SVG from "./icons/information-dense/data-refresh.svg";
import Dashboard16SVG from "./icons/information-dense/dashboard.svg";
import CtaArrowRight16SVG from "./icons/information-dense/cta-arrow-right.svg";
import Copy16SVG from "./icons/information-dense/copy.svg";
@@ -235,6 +241,7 @@ import Save24SVG from "./icons/regular/save.svg";
import SaveAs24SVG from "./icons/regular/save-as.svg";
import Report24SVG from "./icons/regular/report.svg";
import Rename24SVG from "./icons/regular/rename.svg";
+import Remove24SVG from "./icons/regular/remove.svg";
import Redo24SVG from "./icons/regular/redo.svg";
import Recommend24SVG from "./icons/regular/recommend.svg";
import RecentFile24SVG from "./icons/regular/recent-file.svg";
@@ -327,6 +334,7 @@ import Devices24SVG from "./icons/regular/devices.svg";
import DeviceTablet24SVG from "./icons/regular/device-tablet.svg";
import DeviceMobile24SVG from "./icons/regular/device-mobile.svg";
import DeviceDesktop24SVG from "./icons/regular/device-desktop.svg";
+import DataRefresh24SVG from "./icons/regular/data-refresh.svg";
import Dashboard24SVG from "./icons/regular/dashboard.svg";
import CtaArrowRight24SVG from "./icons/regular/cta-arrow-right.svg";
import Copy24SVG from "./icons/regular/copy.svg";
@@ -929,6 +937,22 @@ export const Dashboard24 = props => (
)
+export const DataRefresh24 = props => (
+
+ {({ resolvedRoles }) => {
+ let baseProps = {
+ width: "24px",
+ height: "24px"
+ }
+ const propsClone = Object.assign(baseProps, props, { className: cx(css(stylesheet(props, resolvedRoles)), props.className) });
+ if (props.stylesheet) delete propsClone.stylesheet;
+ return (
+
+ );
+ }}
+
+)
+
export const DeviceDesktop24 = props => (
{({ resolvedRoles }) => {
@@ -2401,6 +2425,22 @@ export const Redo24 = props => (
)
+export const Remove24 = props => (
+
+ {({ resolvedRoles }) => {
+ let baseProps = {
+ width: "24px",
+ height: "24px"
+ }
+ const propsClone = Object.assign(baseProps, props, { className: cx(css(stylesheet(props, resolvedRoles)), props.className) });
+ if (props.stylesheet) delete propsClone.stylesheet;
+ return (
+
+ );
+ }}
+
+)
+
export const Rename24 = props => (
{({ resolvedRoles }) => {
@@ -3569,6 +3609,22 @@ export const Dashboard16 = props => (
)
+export const DataRefresh16 = props => (
+
+ {({ resolvedRoles }) => {
+ let baseProps = {
+ width: "17px",
+ height: "18px"
+ }
+ const propsClone = Object.assign(baseProps, props, { className: cx(css(stylesheet(props, resolvedRoles)), props.className) });
+ if (props.stylesheet) delete propsClone.stylesheet;
+ return (
+
+ );
+ }}
+
+)
+
export const DeviceDesktop16 = props => (
{({ resolvedRoles }) => {
@@ -5041,6 +5097,22 @@ export const Redo16 = props => (
)
+export const Remove16 = props => (
+
+ {({ resolvedRoles }) => {
+ let baseProps = {
+ width: "16px",
+ height: "16px"
+ }
+ const propsClone = Object.assign(baseProps, props, { className: cx(css(stylesheet(props, resolvedRoles)), props.className) });
+ if (props.stylesheet) delete propsClone.stylesheet;
+ return (
+
+ );
+ }}
+
+)
+
export const Rename16 = props => (
{({ resolvedRoles }) => {
@@ -5937,6 +6009,54 @@ export const CloseXsUI = props => (
)
+export const EllipsisMUI = props => (
+
+ {({ resolvedRoles }) => {
+ let baseProps = {
+ width: "24px",
+ height: "24px"
+ }
+ const propsClone = Object.assign(baseProps, props, { className: cx(css(stylesheet(props, resolvedRoles)), props.className) });
+ if (props.stylesheet) delete propsClone.stylesheet;
+ return (
+
+ );
+ }}
+
+)
+
+export const EllipsisSUI = props => (
+
+ {({ resolvedRoles }) => {
+ let baseProps = {
+ width: "16px",
+ height: "16px"
+ }
+ const propsClone = Object.assign(baseProps, props, { className: cx(css(stylesheet(props, resolvedRoles)), props.className) });
+ if (props.stylesheet) delete propsClone.stylesheet;
+ return (
+
+ );
+ }}
+
+)
+
+export const EllipsisXsUI = props => (
+
+ {({ resolvedRoles }) => {
+ let baseProps = {
+ width: "12px",
+ height: "12px"
+ }
+ const propsClone = Object.assign(baseProps, props, { className: cx(css(stylesheet(props, resolvedRoles)), props.className) });
+ if (props.stylesheet) delete propsClone.stylesheet;
+ return (
+
+ );
+ }}
+
+)
+
export const HamburgerCloseUI = props => (
{({ resolvedRoles }) => {
@@ -6113,4 +6233,20 @@ export const Error12 = props => (
)
+export const Help12 = props => (
+
+ {({ resolvedRoles }) => {
+ let baseProps = {
+ width: "12px",
+ height: "12px"
+ }
+ const propsClone = Object.assign(baseProps, props, { className: cx(css(stylesheet(props, resolvedRoles)), props.className) });
+ if (props.stylesheet) delete propsClone.stylesheet;
+ return (
+
+ );
+ }}
+
+)
+
/* eslint-enable */
diff --git a/packages/icons/src/release/hig-icon-names.json b/packages/icons/src/release/hig-icon-names.json
index 8e4fda4672..1203b23d1d 100644
--- a/packages/icons/src/release/hig-icon-names.json
+++ b/packages/icons/src/release/hig-icon-names.json
@@ -1 +1 @@
-{"ADD_FOLDER":"AddFolder","ADD_MEMBER":"AddMember","ADD_PAGE":"AddPage","ADD":"Add","ALERT":"Alert","ARCHIVE":"Archive","AREA_POST":"AreaPost","ATTACH":"Attach","ATTACHMENT":"Attachment","BACK":"Back","BILL_STACK":"BillStack","BILLING":"Billing","BOOKMARK":"Bookmark","BUILDING":"Building","CALENDAR":"Calendar","CARET_DOWN":"CaretDown","CARET_LEFT":"CaretLeft","CARET_RIGHT":"CaretRight","CARET_UP":"CaretUp","CART_EMPTY":"CartEmpty","CART_FULL":"CartFull","CHAT":"Chat","CHECKLIST":"Checklist","CHECKMARK":"Checkmark","CLOCK":"Clock","CLOSED_CAPTIONING":"ClosedCaptioning","CLOUD":"Cloud","COLLABORATION":"Collaboration","COLLAPSE_PANEL":"CollapsePanel","COMMENT":"Comment","COMPARE":"Compare","COMPLETE":"Complete","COPY":"Copy","CTA_ARROW_RIGHT":"CtaArrowRight","DASHBOARD":"Dashboard","DEVICE_DESKTOP":"DeviceDesktop","DEVICE_MOBILE":"DeviceMobile","DEVICE_TABLET":"DeviceTablet","DEVICES":"Devices","DOCUMENT_MANAGEMENT":"DocumentManagement","DOWN":"Down","DOWNLOAD":"Download","EDIT_PROFILE":"EditProfile","EDIT":"Edit","EDUCATION":"Education","ERROR":"Error","EXPAND_PANEL":"ExpandPanel","EXPORT_MOVE":"ExportMove","EXTERNAL_LINK":"ExternalLink","EXTERNAL":"External","FAVORITE":"Favorite","FEATURED":"Featured","FEEDBACK":"Feedback","FIELD":"Field","FILE_ASSEMBLY":"FileAssembly","FILE_AUDIO":"FileAudio","FILE_DOCUMENT":"FileDocument","FILE_GENERIC":"FileGeneric","FILE_IMAGE":"FileImage","FILE_PART":"FilePart","FILE_PDF":"FilePdf","FILE_PRESENTATION":"FilePresentation","FILE_SPREADSHEET":"FileSpreadsheet","FILE_VIDEO":"FileVideo","FILE_ZIP":"FileZip","FILTER_TOKENS":"FilterTokens","FILTER":"Filter","FLAG":"Flag","FOLDER_OPEN":"FolderOpen","FOLDER":"Folder","FORUMS":"Forums","FORWARD":"Forward","GLOBE":"Globe","GRAPH":"Graph","GRID":"Grid","HELP":"Help","HIDDEN":"Hidden","HIERARCHY":"Hierarchy","HOME":"Home","IMPORT":"Import","INBOX":"Inbox","INFO":"Info","ITEM":"Item","LIBRARY":"Library","LINK":"Link","LIST":"List","LOCATION":"Location","LOCK":"Lock","MAIL":"Mail","MANAGE_ACCESS":"ManageAccess","MAXIMIZE":"Maximize","MINIMIZE":"Minimize","MORE_VERTICAL":"MoreVertical","MORE":"More","MUTE":"Mute","NOT_EDITABLE":"NotEditable","NOTIFICATION_OFF":"NotificationOff","NOTIFICATION":"Notification","ONLINE_VIEWERS":"OnlineViewers","PASTE":"Paste","PERMISSION_GROUP":"PermissionGroup","PERMISSION_INDIVIDUAL":"PermissionIndividual","PHOTOS":"Photos","PIN":"Pin","PLACEHOLDER":"Placeholder","PLAYBACK_FAST_FORWARD":"PlaybackFastForward","PLAYBACK_GO_TO_END":"PlaybackGoToEnd","PLAYBACK_GO_TO_START":"PlaybackGoToStart","PLAYBACK_LOOP":"PlaybackLoop","PLAYBACK_NEXT":"PlaybackNext","PLAYBACK_PAUSE":"PlaybackPause","PLAYBACK_PLAY":"PlaybackPlay","PLAYBACK_PREVIOUS":"PlaybackPrevious","PLAYBACK_RECORD":"PlaybackRecord","PLAYBACK_REWIND":"PlaybackRewind","PLAYBACK_SHUFFLE":"PlaybackShuffle","PLAYBACK_STOP":"PlaybackStop","PRINT":"Print","PRODUCTS_AND_SERVICES":"ProductsAndServices","PROFILE":"Profile","PROJECT_MANAGEMENT":"ProjectManagement","PROPERTIES":"Properties","PUBLISH":"Publish","QUANTITIES":"Quantities","RECENT_FILE":"RecentFile","RECOMMEND":"Recommend","REDO":"Redo","RENAME":"Rename","REPORT":"Report","SAVE_AS":"SaveAs","SAVE":"Save","SEARCH":"Search","SECURITY":"Security","SELECT_ALL":"SelectAll","SELECT_NONE":"SelectNone","SERVICE":"Service","SETTINGS":"Settings","SHARE":"Share","SIGN_OUT":"SignOut","SOCIAL_BLOG":"SocialBlog","SOCIAL_FACEBOOK":"SocialFacebook","SOCIAL_INSTAGRAM":"SocialInstagram","SOCIAL_LINKEDIN":"SocialLinkedin","SOCIAL_TWITTER":"SocialTwitter","SOCIAL_YOUTUBE":"SocialYoutube","SORT":"Sort","SUBSCRIPTION":"Subscription","SUPPORT":"Support","SURVEY_EQUIPMENT":"SurveyEquipment","SYNC":"Sync","TAG":"Tag","TRASH":"Trash","TREE_VIEW":"TreeView","UNAVAILABLE":"Unavailable","UNDO":"Undo","UNLINK":"Unlink","UNLOCK":"Unlock","UNPIN":"Unpin","UP":"Up","UPLOAD":"Upload","USER_INACTIVE":"UserInactive","VISIBLE":"Visible","VOLUME":"Volume","ZOOM_IN":"ZoomIn","ZOOM_OUT":"ZoomOut","CARET_DOWN_M":"CaretDownM","CARET_DOWN_S":"CaretDownS","CARET_DOWN_XS":"CaretDownXs","CARET_LEFT_M":"CaretLeftM","CARET_LEFT_S":"CaretLeftS","CARET_LEFT_XS":"CaretLeftXs","CARET_RIGHT_M":"CaretRightM","CARET_RIGHT_S":"CaretRightS","CARET_RIGHT_XS":"CaretRightXs","CARET_UP_M":"CaretUpM","CARET_UP_S":"CaretUpS","CARET_UP_XS":"CaretUpXs","CHECKMARK_S":"CheckmarkS","CHECKMARK_XS":"CheckmarkXs","CLOSE_L":"CloseL","CLOSE_M":"CloseM","CLOSE_S":"CloseS","CLOSE_XS":"CloseXs","HAMBURGER_CLOSE":"HamburgerClose","HAMBURGER_DEFAULT":"HamburgerDefault","HOLD_S":"HoldS","HOLD_XS":"HoldXs","OPERATOR_MINUS_S":"OperatorMinusS","OPERATOR_MINUS_XS":"OperatorMinusXs","OPERATOR_PLUS_S":"OperatorPlusS","OPERATOR_PLUS_XS":"OperatorPlusXs"}
\ No newline at end of file
+{"ADD_FOLDER":"AddFolder","ADD_MEMBER":"AddMember","ADD_PAGE":"AddPage","ADD":"Add","ALERT":"Alert","ARCHIVE":"Archive","AREA_POST":"AreaPost","ATTACH":"Attach","ATTACHMENT":"Attachment","BACK":"Back","BILL_STACK":"BillStack","BILLING":"Billing","BOOKMARK":"Bookmark","BUILDING":"Building","CALENDAR":"Calendar","CARET_DOWN":"CaretDown","CARET_LEFT":"CaretLeft","CARET_RIGHT":"CaretRight","CARET_UP":"CaretUp","CART_EMPTY":"CartEmpty","CART_FULL":"CartFull","CHAT":"Chat","CHECKLIST":"Checklist","CHECKMARK":"Checkmark","CLOCK":"Clock","CLOSED_CAPTIONING":"ClosedCaptioning","CLOUD":"Cloud","COLLABORATION":"Collaboration","COLLAPSE_PANEL":"CollapsePanel","COMMENT":"Comment","COMPARE":"Compare","COMPLETE":"Complete","COPY":"Copy","CTA_ARROW_RIGHT":"CtaArrowRight","DASHBOARD":"Dashboard","DATA_REFRESH":"DataRefresh","DEVICE_DESKTOP":"DeviceDesktop","DEVICE_MOBILE":"DeviceMobile","DEVICE_TABLET":"DeviceTablet","DEVICES":"Devices","DOCUMENT_MANAGEMENT":"DocumentManagement","DOWN":"Down","DOWNLOAD":"Download","EDIT_PROFILE":"EditProfile","EDIT":"Edit","EDUCATION":"Education","ERROR":"Error","EXPAND_PANEL":"ExpandPanel","EXPORT_MOVE":"ExportMove","EXTERNAL_LINK":"ExternalLink","EXTERNAL":"External","FAVORITE":"Favorite","FEATURED":"Featured","FEEDBACK":"Feedback","FIELD":"Field","FILE_ASSEMBLY":"FileAssembly","FILE_AUDIO":"FileAudio","FILE_DOCUMENT":"FileDocument","FILE_GENERIC":"FileGeneric","FILE_IMAGE":"FileImage","FILE_PART":"FilePart","FILE_PDF":"FilePdf","FILE_PRESENTATION":"FilePresentation","FILE_SPREADSHEET":"FileSpreadsheet","FILE_VIDEO":"FileVideo","FILE_ZIP":"FileZip","FILTER_TOKENS":"FilterTokens","FILTER":"Filter","FLAG":"Flag","FOLDER_OPEN":"FolderOpen","FOLDER":"Folder","FORUMS":"Forums","FORWARD":"Forward","GLOBE":"Globe","GRAPH":"Graph","GRID":"Grid","HELP":"Help","HIDDEN":"Hidden","HIERARCHY":"Hierarchy","HOME":"Home","IMPORT":"Import","INBOX":"Inbox","INFO":"Info","ITEM":"Item","LIBRARY":"Library","LINK":"Link","LIST":"List","LOCATION":"Location","LOCK":"Lock","MAIL":"Mail","MANAGE_ACCESS":"ManageAccess","MAXIMIZE":"Maximize","MINIMIZE":"Minimize","MORE_VERTICAL":"MoreVertical","MORE":"More","MUTE":"Mute","NOT_EDITABLE":"NotEditable","NOTIFICATION_OFF":"NotificationOff","NOTIFICATION":"Notification","ONLINE_VIEWERS":"OnlineViewers","PASTE":"Paste","PERMISSION_GROUP":"PermissionGroup","PERMISSION_INDIVIDUAL":"PermissionIndividual","PHOTOS":"Photos","PIN":"Pin","PLACEHOLDER":"Placeholder","PLAYBACK_FAST_FORWARD":"PlaybackFastForward","PLAYBACK_GO_TO_END":"PlaybackGoToEnd","PLAYBACK_GO_TO_START":"PlaybackGoToStart","PLAYBACK_LOOP":"PlaybackLoop","PLAYBACK_NEXT":"PlaybackNext","PLAYBACK_PAUSE":"PlaybackPause","PLAYBACK_PLAY":"PlaybackPlay","PLAYBACK_PREVIOUS":"PlaybackPrevious","PLAYBACK_RECORD":"PlaybackRecord","PLAYBACK_REWIND":"PlaybackRewind","PLAYBACK_SHUFFLE":"PlaybackShuffle","PLAYBACK_STOP":"PlaybackStop","PRINT":"Print","PRODUCTS_AND_SERVICES":"ProductsAndServices","PROFILE":"Profile","PROJECT_MANAGEMENT":"ProjectManagement","PROPERTIES":"Properties","PUBLISH":"Publish","QUANTITIES":"Quantities","RECENT_FILE":"RecentFile","RECOMMEND":"Recommend","REDO":"Redo","REMOVE":"Remove","RENAME":"Rename","REPORT":"Report","SAVE_AS":"SaveAs","SAVE":"Save","SEARCH":"Search","SECURITY":"Security","SELECT_ALL":"SelectAll","SELECT_NONE":"SelectNone","SERVICE":"Service","SETTINGS":"Settings","SHARE":"Share","SIGN_OUT":"SignOut","SOCIAL_BLOG":"SocialBlog","SOCIAL_FACEBOOK":"SocialFacebook","SOCIAL_INSTAGRAM":"SocialInstagram","SOCIAL_LINKEDIN":"SocialLinkedin","SOCIAL_TWITTER":"SocialTwitter","SOCIAL_YOUTUBE":"SocialYoutube","SORT":"Sort","SUBSCRIPTION":"Subscription","SUPPORT":"Support","SURVEY_EQUIPMENT":"SurveyEquipment","SYNC":"Sync","TAG":"Tag","TRASH":"Trash","TREE_VIEW":"TreeView","UNAVAILABLE":"Unavailable","UNDO":"Undo","UNLINK":"Unlink","UNLOCK":"Unlock","UNPIN":"Unpin","UP":"Up","UPLOAD":"Upload","USER_INACTIVE":"UserInactive","VISIBLE":"Visible","VOLUME":"Volume","ZOOM_IN":"ZoomIn","ZOOM_OUT":"ZoomOut","CARET_DOWN_M":"CaretDownM","CARET_DOWN_S":"CaretDownS","CARET_DOWN_XS":"CaretDownXs","CARET_LEFT_M":"CaretLeftM","CARET_LEFT_S":"CaretLeftS","CARET_LEFT_XS":"CaretLeftXs","CARET_RIGHT_M":"CaretRightM","CARET_RIGHT_S":"CaretRightS","CARET_RIGHT_XS":"CaretRightXs","CARET_UP_M":"CaretUpM","CARET_UP_S":"CaretUpS","CARET_UP_XS":"CaretUpXs","CHECKMARK_S":"CheckmarkS","CHECKMARK_XS":"CheckmarkXs","CLOSE_L":"CloseL","CLOSE_M":"CloseM","CLOSE_S":"CloseS","CLOSE_XS":"CloseXs","ELLIPSIS_M":"EllipsisM","ELLIPSIS_S":"EllipsisS","ELLIPSIS_XS":"EllipsisXs","HAMBURGER_CLOSE":"HamburgerClose","HAMBURGER_DEFAULT":"HamburgerDefault","HOLD_S":"HoldS","HOLD_XS":"HoldXs","OPERATOR_MINUS_S":"OperatorMinusS","OPERATOR_MINUS_XS":"OperatorMinusXs","OPERATOR_PLUS_S":"OperatorPlusS","OPERATOR_PLUS_XS":"OperatorPlusXs"}
\ No newline at end of file
diff --git a/packages/icons/src/release/hig-icon-sets.json b/packages/icons/src/release/hig-icon-sets.json
index 0bbb34988f..2d7b454bf2 100644
--- a/packages/icons/src/release/hig-icon-sets.json
+++ b/packages/icons/src/release/hig-icon-sets.json
@@ -1 +1 @@
-[{"title":"Regular","dirName":"regular","size":"24","iconNames":["AddFolder","AddMember","AddPage","Add","Alert","Archive","AreaPost","Attach","Attachment","Back","BillStack","Billing","Bookmark","Building","Calendar","CaretDown","CaretLeft","CaretRight","CaretUp","CartEmpty","CartFull","Chat","Checklist","Checkmark","Clock","ClosedCaptioning","Cloud","Collaboration","CollapsePanel","Comment","Compare","Complete","Copy","CtaArrowRight","Dashboard","DeviceDesktop","DeviceMobile","DeviceTablet","Devices","DocumentManagement","Down","Download","EditProfile","Edit","Education","Error","ExpandPanel","ExportMove","ExternalLink","External","Favorite","Featured","Feedback","Field","FileAssembly","FileAudio","FileDocument","FileGeneric","FileImage","FilePart","FilePdf","FilePresentation","FileSpreadsheet","FileVideo","FileZip","FilterTokens","Filter","Flag","FolderOpen","Folder","Forums","Forward","Globe","Graph","Grid","Help","Hidden","Hierarchy","Home","Import","Inbox","Info","Item","Library","Link","List","Location","Lock","Mail","ManageAccess","Maximize","Minimize","MoreVertical","More","Mute","NotEditable","NotificationOff","Notification","OnlineViewers","Paste","PermissionGroup","PermissionIndividual","Photos","Pin","Placeholder","PlaybackFastForward","PlaybackGoToEnd","PlaybackGoToStart","PlaybackLoop","PlaybackNext","PlaybackPause","PlaybackPlay","PlaybackPrevious","PlaybackRecord","PlaybackRewind","PlaybackShuffle","PlaybackStop","Print","ProductsAndServices","Profile","ProjectManagement","Properties","Publish","Quantities","RecentFile","Recommend","Redo","Rename","Report","SaveAs","Save","Search","Security","SelectAll","SelectNone","Service","Settings","Share","SignOut","SocialBlog","SocialFacebook","SocialInstagram","SocialLinkedin","SocialTwitter","SocialYoutube","Sort","Subscription","Support","SurveyEquipment","Sync","Tag","Trash","TreeView","Unavailable","Undo","Unlink","Unlock","Unpin","Up","Upload","UserInactive","Visible","Volume","ZoomIn","ZoomOut"]},{"title":"Information Dense","dirName":"information-dense","size":"16","iconNames":["AddFolder","AddMember","AddPage","Add","Alert","Archive","AreaPost","Attach","Attachment","Back","BillStack","Billing","Bookmark","Building","Calendar","CaretDown","CaretLeft","CaretRight","CaretUp","CartEmpty","CartFull","Chat","Checklist","Checkmark","Clock","ClosedCaptioning","Cloud","Collaboration","CollapsePanel","Comment","Compare","Complete","Copy","CtaArrowRight","Dashboard","DeviceDesktop","DeviceMobile","DeviceTablet","Devices","DocumentManagement","Down","Download","EditProfile","Edit","Education","Error","ExpandPanel","ExportMove","ExternalLink","External","Favorite","Featured","Feedback","Field","FileAssembly","FileAudio","FileDocument","FileGeneric","FileImage","FilePart","FilePdf","FilePresentation","FileSpreadsheet","FileVideo","FileZip","FilterTokens","Filter","Flag","FolderOpen","Folder","Forums","Forward","Globe","Graph","Grid","Help","Hidden","Hierarchy","Home","Import","Inbox","Info","Item","Library","Link","List","Location","Lock","Mail","ManageAccess","Maximize","Minimize","MoreVertical","More","Mute","NotEditable","NotificationOff","Notification","OnlineViewers","Paste","PermissionGroup","PermissionIndividual","Photos","Pin","Placeholder","PlaybackFastForward","PlaybackGoToEnd","PlaybackGoToStart","PlaybackLoop","PlaybackNext","PlaybackPause","PlaybackPlay","PlaybackPrevious","PlaybackRecord","PlaybackRewind","PlaybackShuffle","PlaybackStop","Print","ProductsAndServices","Profile","ProjectManagement","Properties","Publish","Quantities","RecentFile","Recommend","Redo","Rename","Report","SaveAs","Save","Search","Security","SelectAll","SelectNone","Service","Settings","Share","SignOut","SocialBlog","SocialFacebook","SocialInstagram","SocialLinkedin","SocialTwitter","SocialYoutube","Sort","Subscription","Support","SurveyEquipment","Sync","Tag","Trash","TreeView","Unavailable","Undo","Unlink","Unlock","Unpin","Up","Upload","UserInactive","Visible","Volume","ZoomIn","ZoomOut"]},{"title":"UI Controls","dirName":"ui-controls","size":"UI","iconNames":["CaretDownM","CaretDownS","CaretDownXs","CaretLeftM","CaretLeftS","CaretLeftXs","CaretRightM","CaretRightS","CaretRightXs","CaretUpM","CaretUpS","CaretUpXs","CheckmarkS","CheckmarkXs","CloseL","CloseM","CloseS","CloseXs","HamburgerClose","HamburgerDefault","HoldS","HoldXs","OperatorMinusS","OperatorMinusXs","OperatorPlusS","OperatorPlusXs"]},{"title":"Size 12","dirName":"size12","size":"12","iconNames":["Alert","Complete","Error"]}]
\ No newline at end of file
+[{"title":"Regular","dirName":"regular","size":"24","iconNames":["AddFolder","AddMember","AddPage","Add","Alert","Archive","AreaPost","Attach","Attachment","Back","BillStack","Billing","Bookmark","Building","Calendar","CaretDown","CaretLeft","CaretRight","CaretUp","CartEmpty","CartFull","Chat","Checklist","Checkmark","Clock","ClosedCaptioning","Cloud","Collaboration","CollapsePanel","Comment","Compare","Complete","Copy","CtaArrowRight","Dashboard","DataRefresh","DeviceDesktop","DeviceMobile","DeviceTablet","Devices","DocumentManagement","Down","Download","EditProfile","Edit","Education","Error","ExpandPanel","ExportMove","ExternalLink","External","Favorite","Featured","Feedback","Field","FileAssembly","FileAudio","FileDocument","FileGeneric","FileImage","FilePart","FilePdf","FilePresentation","FileSpreadsheet","FileVideo","FileZip","FilterTokens","Filter","Flag","FolderOpen","Folder","Forums","Forward","Globe","Graph","Grid","Help","Hidden","Hierarchy","Home","Import","Inbox","Info","Item","Library","Link","List","Location","Lock","Mail","ManageAccess","Maximize","Minimize","MoreVertical","More","Mute","NotEditable","NotificationOff","Notification","OnlineViewers","Paste","PermissionGroup","PermissionIndividual","Photos","Pin","Placeholder","PlaybackFastForward","PlaybackGoToEnd","PlaybackGoToStart","PlaybackLoop","PlaybackNext","PlaybackPause","PlaybackPlay","PlaybackPrevious","PlaybackRecord","PlaybackRewind","PlaybackShuffle","PlaybackStop","Print","ProductsAndServices","Profile","ProjectManagement","Properties","Publish","Quantities","RecentFile","Recommend","Redo","Remove","Rename","Report","SaveAs","Save","Search","Security","SelectAll","SelectNone","Service","Settings","Share","SignOut","SocialBlog","SocialFacebook","SocialInstagram","SocialLinkedin","SocialTwitter","SocialYoutube","Sort","Subscription","Support","SurveyEquipment","Sync","Tag","Trash","TreeView","Unavailable","Undo","Unlink","Unlock","Unpin","Up","Upload","UserInactive","Visible","Volume","ZoomIn","ZoomOut"]},{"title":"Information Dense","dirName":"information-dense","size":"16","iconNames":["AddFolder","AddMember","AddPage","Add","Alert","Archive","AreaPost","Attach","Attachment","Back","BillStack","Billing","Bookmark","Building","Calendar","CaretDown","CaretLeft","CaretRight","CaretUp","CartEmpty","CartFull","Chat","Checklist","Checkmark","Clock","ClosedCaptioning","Cloud","Collaboration","CollapsePanel","Comment","Compare","Complete","Copy","CtaArrowRight","Dashboard","DataRefresh","DeviceDesktop","DeviceMobile","DeviceTablet","Devices","DocumentManagement","Down","Download","EditProfile","Edit","Education","Error","ExpandPanel","ExportMove","ExternalLink","External","Favorite","Featured","Feedback","Field","FileAssembly","FileAudio","FileDocument","FileGeneric","FileImage","FilePart","FilePdf","FilePresentation","FileSpreadsheet","FileVideo","FileZip","FilterTokens","Filter","Flag","FolderOpen","Folder","Forums","Forward","Globe","Graph","Grid","Help","Hidden","Hierarchy","Home","Import","Inbox","Info","Item","Library","Link","List","Location","Lock","Mail","ManageAccess","Maximize","Minimize","MoreVertical","More","Mute","NotEditable","NotificationOff","Notification","OnlineViewers","Paste","PermissionGroup","PermissionIndividual","Photos","Pin","Placeholder","PlaybackFastForward","PlaybackGoToEnd","PlaybackGoToStart","PlaybackLoop","PlaybackNext","PlaybackPause","PlaybackPlay","PlaybackPrevious","PlaybackRecord","PlaybackRewind","PlaybackShuffle","PlaybackStop","Print","ProductsAndServices","Profile","ProjectManagement","Properties","Publish","Quantities","RecentFile","Recommend","Redo","Remove","Rename","Report","SaveAs","Save","Search","Security","SelectAll","SelectNone","Service","Settings","Share","SignOut","SocialBlog","SocialFacebook","SocialInstagram","SocialLinkedin","SocialTwitter","SocialYoutube","Sort","Subscription","Support","SurveyEquipment","Sync","Tag","Trash","TreeView","Unavailable","Undo","Unlink","Unlock","Unpin","Up","Upload","UserInactive","Visible","Volume","ZoomIn","ZoomOut"]},{"title":"UI Controls","dirName":"ui-controls","size":"UI","iconNames":["CaretDownM","CaretDownS","CaretDownXs","CaretLeftM","CaretLeftS","CaretLeftXs","CaretRightM","CaretRightS","CaretRightXs","CaretUpM","CaretUpS","CaretUpXs","CheckmarkS","CheckmarkXs","CloseL","CloseM","CloseS","CloseXs","EllipsisM","EllipsisS","EllipsisXs","HamburgerClose","HamburgerDefault","HoldS","HoldXs","OperatorMinusS","OperatorMinusXs","OperatorPlusS","OperatorPlusXs"]},{"title":"Size 12","dirName":"size12","size":"12","iconNames":["Alert","Complete","Error","Help"]}]
\ No newline at end of file