diff --git a/CHANGELOG.md b/CHANGELOG.md index ebb5138764..53a01606a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ### Features - Rename `Slot` component to `Box` and export it @Bugaa92 ([#713](https://github.com/stardust-ui/react/pull/713)) +- Add and export 'missed call' icon in Teams theme @codepretty ([#748](https://github.com/stardust-ui/react/pull/748)) - Add `Indicator` component and used it in `MenuItem` and `AccordionTitle` @mnajdova ([#721](https://github.com/stardust-ui/react/pull/721)) diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-missed.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-missed.tsx index 3cab50877a..78919909cc 100644 --- a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-missed.tsx +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-missed.tsx @@ -17,4 +17,5 @@ export default { ), styles: {}, + exportedAs: 'phone-clock', } as TeamsProcessedSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/icons/index.ts b/src/themes/teams/components/Icon/svg/icons/index.ts index b8937e6213..9da2c2db6f 100644 --- a/src/themes/teams/components/Icon/svg/icons/index.ts +++ b/src/themes/teams/components/Icon/svg/icons/index.ts @@ -41,6 +41,7 @@ import numberList from './numberList' import outdent from './outdent' import paperclip from './paperclip' import participantRemove from './participantRemove' +import phoneClock from './phoneClock' import quote from './quote' import redbang from './redbang' import redo from './redo' @@ -103,6 +104,7 @@ export default { paperclip, 'participant-add': addParticipant, 'participant-remove': participantRemove, + 'phone-clock': phoneClock, quote, redbang, redo, diff --git a/src/themes/teams/components/Icon/svg/icons/phoneClock.tsx b/src/themes/teams/components/Icon/svg/icons/phoneClock.tsx new file mode 100644 index 0000000000..ed56ec9838 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/icons/phoneClock.tsx @@ -0,0 +1,21 @@ +import * as React from 'react' +import cx from 'classnames' +import { TeamsProcessedSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsProcessedSvgIconSpec