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)) 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..797984fe25 --- /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,