diff --git a/CHANGELOG.md b/CHANGELOG.md index c499d50d37..bfadbc2521 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - Fix `propTypes` warning in `ListItem` @layershifter ([#1266](https://github.com/stardust-ui/react/pull/1266)) - Expand css shorthands for correct merging of the styles @mnajdova ([#869](https://github.com/stardust-ui/react/pull/869)) +### Features +- Export `call-dialpad` icon in Teams theme @assamad ([#1271](https://github.com/stardust-ui/react/pull/1271)) + ## [v0.29.0](https://github.com/stardust-ui/react/tree/v0.29.0) (2019-04-24) [Compare changes](https://github.com/stardust-ui/react/compare/v0.28.1...v0.29.0) diff --git a/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-dialpad.tsx b/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-dialpad.tsx index dca29b52d6..8b3da8fe28 100644 --- a/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-dialpad.tsx +++ b/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-dialpad.tsx @@ -8,4 +8,5 @@ export default { ), styles: {}, + exportedAs: 'call-dialpad', } as TeamsProcessedSvgIconSpec diff --git a/packages/react/src/themes/teams/components/Icon/svg/icons/callDialpad.tsx b/packages/react/src/themes/teams/components/Icon/svg/icons/callDialpad.tsx new file mode 100644 index 0000000000..dca29b52d6 --- /dev/null +++ b/packages/react/src/themes/teams/components/Icon/svg/icons/callDialpad.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsProcessedSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsProcessedSvgIconSpec diff --git a/packages/react/src/themes/teams/components/Icon/svg/icons/index.ts b/packages/react/src/themes/teams/components/Icon/svg/icons/index.ts index 0d3428ec87..b2118ab294 100644 --- a/packages/react/src/themes/teams/components/Icon/svg/icons/index.ts +++ b/packages/react/src/themes/teams/components/Icon/svg/icons/index.ts @@ -13,6 +13,7 @@ import calendar from './calendar' import call from './call' import callControlPresentNew from './callControlPresentNew' import callControlStopPresentingNew from './callControlStopPresentingNew' +import callDialpad from './callDialpad' import callEnd from './callEnd' import callPstn from './callPstn' import callRecording from './callRecording' @@ -123,6 +124,7 @@ export default { bullets, calendar, call, + 'call-dialpad': callDialpad, 'call-end': callEnd, 'call-video': callVideo, 'call-video-off': callVideoOff,