diff --git a/CHANGELOG.md b/CHANGELOG.md index b3302ced85..dfd03cc932 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ ### Minor +- Icon: Add new icon of `ads-stats` and `ads-overview` (#522) - IconButton: Add new `disabled` prop and stylings to `IconButton` component (#521) ### Patch @@ -44,7 +45,6 @@ - TextArea/TextField/SelectList: cleanup components and remove gDSFP (#503) - Upgrade React version to [16.8.5](https://github.com/facebook/react/releases/tag/v16.8.5) (#504) - ## 0.93.0 (March 13, 2019) - Mask: add new prop `willChangeTransform` default true which can turn off `willChange:transform` property in CSS (#494) diff --git a/packages/gestalt/src/icons/ads-overview.svg b/packages/gestalt/src/icons/ads-overview.svg new file mode 100644 index 0000000000..bf4e2aeaee --- /dev/null +++ b/packages/gestalt/src/icons/ads-overview.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/gestalt/src/icons/ads-stats.svg b/packages/gestalt/src/icons/ads-stats.svg new file mode 100644 index 0000000000..c5e3abdda1 --- /dev/null +++ b/packages/gestalt/src/icons/ads-stats.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/gestalt/src/icons/index.js b/packages/gestalt/src/icons/index.js index e22cc15a8c..4796e701f2 100644 --- a/packages/gestalt/src/icons/index.js +++ b/packages/gestalt/src/icons/index.js @@ -4,6 +4,8 @@ import add from './add.svg'; import addCircle from './add-circle.svg'; import addPin from './add-pin.svg'; import adGroup from './ad-group.svg'; +import adsStats from './ads-stats.svg'; +import adsOverview from './ads-overview.svg'; import alert from './alert.svg'; import alignBottom from './align-bottom.svg'; import alignBottomCenter from './align-bottom-center.svg'; @@ -147,6 +149,8 @@ export default { add, 'add-circle': addCircle, 'add-pin': addPin, + 'ads-stats': adsStats, + 'ads-overview': adsOverview, alert, 'align-bottom-center': alignBottomCenter, 'align-bottom-left': alignBottomLeft,