diff --git a/packages/fluentui/CHANGELOG.md b/packages/fluentui/CHANGELOG.md index 79bea96f04e57..336f13267db8a 100644 --- a/packages/fluentui/CHANGELOG.md +++ b/packages/fluentui/CHANGELOG.md @@ -49,6 +49,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - Added `ChannelShareIcon` @notandrew ([#16619](https://github.com/microsoft/fluentui/pull/16619)) - Added `FormTextArea` component @assuncaocharles ([#16660](https://github.com/microsoft/fluentui/pull/16660)) - Added `checked="mixed"` support for `Checkbox` @assuncaocharles ([#16081](https://github.com/microsoft/fluentui/pull/16081)) +- Added `ImageAltTextIcon` @notandrew ([#16884](https://github.com/microsoft/fluentui/pull/16884)) ## Performance diff --git a/packages/fluentui/react-icons-northstar/src/components/ImageAltTextIcon.tsx b/packages/fluentui/react-icons-northstar/src/components/ImageAltTextIcon.tsx new file mode 100644 index 0000000000000..fd1980592e50f --- /dev/null +++ b/packages/fluentui/react-icons-northstar/src/components/ImageAltTextIcon.tsx @@ -0,0 +1,26 @@ +import * as React from 'react'; +import cx from 'classnames'; +import { createSvgIcon } from '../utils/createSvgIcon'; +import { iconClassNames } from '../utils/iconClassNames'; + +export const ImageAltTextIcon = createSvgIcon({ + svg: ({ classes }) => ( + + + + + ), + displayName: 'ImageAltTextIcon', +}); diff --git a/packages/fluentui/react-icons-northstar/src/index.ts b/packages/fluentui/react-icons-northstar/src/index.ts index 039e1b9b7a5ad..6ee29439eced6 100644 --- a/packages/fluentui/react-icons-northstar/src/index.ts +++ b/packages/fluentui/react-icons-northstar/src/index.ts @@ -127,6 +127,7 @@ export { HandIcon } from './components/HandIcon'; export { HeadsetIcon } from './components/HeadsetIcon'; export { HighlightIcon } from './components/HighlightIcon'; export { HorizontalRuleIcon } from './components/HorizontalRuleIcon'; +export { ImageAltTextIcon } from './components/ImageAltTextIcon'; export { ImageLibraryIcon } from './components/ImageLibraryIcon'; export { ImageUnavailableIcon } from './components/ImageUnavailableIcon'; export { IndentIcon } from './components/IndentIcon';