diff --git a/CHANGELOG.md b/CHANGELOG.md index 755e0f9120..efde59e85d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - Add `tooltipAsLabelBehavior` accessibility behavior for `Tooltip` @sophieH29 ([#1635](https://github.com/stardust-ui/react/pull/1635)) - Add outline version of `menu` icon and `files-visio` icon to Teams theme @notandrew ([#1623](https://github.com/stardust-ui/react/pull/1623)) - Add `amethyst` color to the Teams theme color palette @mnajdova ([#1650](https://github.com/stardust-ui/react/pull/1650)) +- Export `onedrive` icon to `Teams` theme @chughkartikey ([#1680](https://github.com/stardust-ui/react/pull/1680)) - Add `image-unavailable` icon to Teams Theme @joheredi ([#1633](https://github.com/stardust-ui/react/pull/1633)) - Add bidirectional navigation following DOM in `FocusZone` @sophieH29 ([#1637](https://github.com/stardust-ui/react/pull/1647)) - Open `Popup` on `contextmenu` @jurokapsiar ([#1524](https://github.com/stardust-ui/react/pull/1524)) diff --git a/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-onedrive.tsx b/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-onedrive.tsx index 7e7fff1e00..a4d8f39b8f 100644 --- a/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-onedrive.tsx +++ b/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-onedrive.tsx @@ -8,4 +8,5 @@ export default { ), styles: {}, + exportedAs: 'onedrive', } 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 9476c4052c..a6637ca302 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 @@ -91,6 +91,7 @@ import messageSeen from './messageSeen' import mic from './mic' import micOff from './micOff' import more from './more' +import oneDrive from './oneDrive' import microsoftStream from './microsoftStream' import userPhone from './userPhone' import speakerMute from './speakerMute' @@ -233,6 +234,7 @@ export default { 'microsoft-stream': microsoftStream, 'user-phone': userPhone, 'number-list': numberList, + onedrive: oneDrive, 'open-outside': openOutside, outdent, paperclip, diff --git a/packages/react/src/themes/teams/components/Icon/svg/icons/oneDrive.tsx b/packages/react/src/themes/teams/components/Icon/svg/icons/oneDrive.tsx new file mode 100644 index 0000000000..7e7fff1e00 --- /dev/null +++ b/packages/react/src/themes/teams/components/Icon/svg/icons/oneDrive.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsProcessedSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsProcessedSvgIconSpec