From f34408003346a080060c2557257971fcfc8be4b9 Mon Sep 17 00:00:00 2001 From: Alexandru Buliga Date: Mon, 10 Dec 2018 13:54:34 +0100 Subject: [PATCH 1/2] feat(icon): export call-recording icon --- .../Icon/svg/ProcessedIcons/icons-call-recording.tsx | 1 + .../components/Icon/svg/icons/callRecording.tsx | 12 ++++++++++++ src/themes/teams/components/Icon/svg/icons/index.ts | 2 ++ 3 files changed, 15 insertions(+) create mode 100644 src/themes/teams/components/Icon/svg/icons/callRecording.tsx diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-recording.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-recording.tsx index 68d5a408c9..abdec8df9e 100644 --- a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-recording.tsx +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-recording.tsx @@ -9,4 +9,5 @@ export default { ), styles: {}, + exportedAs: 'call-recording', } as TeamsProcessedSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/icons/callRecording.tsx b/src/themes/teams/components/Icon/svg/icons/callRecording.tsx new file mode 100644 index 0000000000..68d5a408c9 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/icons/callRecording.tsx @@ -0,0 +1,12 @@ +import * as React from 'react' +import { TeamsProcessedSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} 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 251c0057ce..f2cbc85839 100644 --- a/src/themes/teams/components/Icon/svg/icons/index.ts +++ b/src/themes/teams/components/Icon/svg/icons/index.ts @@ -9,6 +9,7 @@ import call from './call' import callControlPresentNew from './callControlPresentNew' import callControlStopPresentingNew from './callControlStopPresentingNew' import callEnd from './callEnd' +import callRecording from './callRecording' import callVideo from './callVideo' import callVideoOff from './callVideoOff' import edit from './edit' @@ -48,6 +49,7 @@ export default { 'call-video-off': callVideoOff, 'call-control-present-new': callControlPresentNew, 'call-control-stop-presenting-new': callControlStopPresentingNew, + 'call-recording': callRecording, edit, error, format, From c86b2f3628ef2cecddea583438e1503d87749289 Mon Sep 17 00:00:00 2001 From: Alexandru Buliga Date: Mon, 10 Dec 2018 14:46:22 +0100 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 993f743c4f..018dcd8507 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - `Ref` components uses `forwardRef` API by default @layershifter ([#491](https://github.com/stardust-ui/react/pull/491)) - Label Processed Teams icons moved to Stardust theme @kuzhelov ([#574](https://github.com/stardust-ui/react/pull/574)) - Add `Dropdown` component @silviuavram ([#422](https://github.com/stardust-ui/react/pull/422)) +- Export `call-recording` SVG icon @Bugaa92 ([#585](https://github.com/stardust-ui/react/pull/585)) ### Documentation - Add `prettier` support throughout the docs @levithomason ([#568](https://github.com/stardust-ui/react/pull/568))