From 5c9a28f457fda00b49745baeb27a8c7754bf52ce Mon Sep 17 00:00:00 2001 From: Yichen Qiu Date: Thu, 13 Feb 2020 01:23:37 -0800 Subject: [PATCH 1/3] add activity icon --- .../components/Icon/svg/icons/activity.tsx | 27 +++++++++++++++++++ .../teams/components/Icon/svg/icons/index.ts | 2 ++ 2 files changed, 29 insertions(+) create mode 100644 packages/react/src/themes/teams/components/Icon/svg/icons/activity.tsx diff --git a/packages/react/src/themes/teams/components/Icon/svg/icons/activity.tsx b/packages/react/src/themes/teams/components/Icon/svg/icons/activity.tsx new file mode 100644 index 0000000000..04225d1efc --- /dev/null +++ b/packages/react/src/themes/teams/components/Icon/svg/icons/activity.tsx @@ -0,0 +1,27 @@ +import * as React from "react"; +import * as cx from "classnames"; +import { TeamsSvgIconSpec } from '../types' +import { teamsIconClassNames } from '../teamsIconClassNames' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, + isSvg: true +} as TeamsSvgIconSpec; \ No newline at end of file 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 a96603c78c..930178425d 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 @@ -1,6 +1,7 @@ import { TeamsSvgIconSpec } from '../types' import accept from './accept' +import activity from './activity' import add from './add' import addParticipant from './addParticipant' import arrowUp from './arrowUp' @@ -181,6 +182,7 @@ import windowRestore from './windowRestore' export default { 'icon-circle': iconCircle, accept, + activity, add, 'arrow-up': arrowUp, 'arrow-down': arrowDown, From 1a2a55af4a868e59448967fb983318b15b7b4a8b Mon Sep 17 00:00:00 2001 From: Yichen Qiu Date: Thu, 13 Feb 2020 01:46:42 -0800 Subject: [PATCH 2/3] change log --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 828a403035..8402d52bcd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ### Features - Added sourcemaps to the dist output to simplify debugging @miroslavstastny ([#2329](https://github.com/microsoft/fluent-ui-react/pull/2329)) +- Export `activity` SVG icon @yiq ([#2351](https://github.com/microsoft/fluent-ui-react/pull/2351)) ### Performance - Add styles caching when there aren't inline overrides defined @mnajdova ([#2309](https://github.com/microsoft/fluent-ui-react/pull/2309)) From c0923eacdc25c42fd3fa038be092a8f881f24389 Mon Sep 17 00:00:00 2001 From: Yichen Qiu Date: Thu, 13 Feb 2020 01:49:02 -0800 Subject: [PATCH 3/3] remove newline --- .../src/themes/teams/components/Icon/svg/icons/activity.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react/src/themes/teams/components/Icon/svg/icons/activity.tsx b/packages/react/src/themes/teams/components/Icon/svg/icons/activity.tsx index 04225d1efc..797984fe25 100644 --- a/packages/react/src/themes/teams/components/Icon/svg/icons/activity.tsx +++ b/packages/react/src/themes/teams/components/Icon/svg/icons/activity.tsx @@ -24,4 +24,4 @@ export default { ), styles: {}, isSvg: true -} as TeamsSvgIconSpec; \ No newline at end of file +} as TeamsSvgIconSpec \ No newline at end of file