diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fd9c46bb9..6f213c0c63 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)) +- Add `image-unavailable` icon to Teams Theme @joheredi ([#1633](https://github.com/stardust-ui/react/pull/1633)) ### Fixes - Fix `ChatMessage`'s focus border overlays `actionMenu` in Teams theme @mnajdova ([#1637](https://github.com/stardust-ui/react/pull/1637)) diff --git a/packages/react/src/themes/teams/components/Icon/svg/icons/image-unavailable.tsx b/packages/react/src/themes/teams/components/Icon/svg/icons/image-unavailable.tsx new file mode 100644 index 0000000000..8b2f9acb94 --- /dev/null +++ b/packages/react/src/themes/teams/components/Icon/svg/icons/image-unavailable.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec 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 a8da1458ec..9476c4052c 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 @@ -74,6 +74,7 @@ import giphy from './giphy' import hand from './hand' import highlight from './highlight' import horizontalRule from './horizontalRule' +import imageUnavailable from './image-unavailable' import indent from './indent' import info from './info' import italic from './italic' @@ -210,6 +211,7 @@ export default { giphy, highlight, 'horizontal-rule': horizontalRule, + 'image-unavailable': imageUnavailable, indent, info, italic,