From d6bf0d75fbee71afd9341936fbce667f73d48e54 Mon Sep 17 00:00:00 2001 From: Andrew Martin Date: Mon, 8 Feb 2021 20:37:08 -0800 Subject: [PATCH 1/3] adding imageAltText icon --- .../src/components/ImageAltTextIcon.tsx | 20 +++++++++++++++++++ .../react-icons-northstar/src/index.ts | 1 + 2 files changed, 21 insertions(+) create mode 100644 packages/fluentui/react-icons-northstar/src/components/ImageAltTextIcon.tsx 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..8a13503385c6b --- /dev/null +++ b/packages/fluentui/react-icons-northstar/src/components/ImageAltTextIcon.tsx @@ -0,0 +1,20 @@ +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'; From c18dc9ce2a48bba5076571afe14054955725a74f Mon Sep 17 00:00:00 2001 From: Andrew Martin Date: Mon, 8 Feb 2021 20:39:23 -0800 Subject: [PATCH 2/3] changelog --- packages/fluentui/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) 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 From 68b673e3346415d1206bafa1ea5690d2604ac462 Mon Sep 17 00:00:00 2001 From: Andrew Martin Date: Mon, 8 Feb 2021 20:42:09 -0800 Subject: [PATCH 3/3] adding overflow property --- .../src/components/ImageAltTextIcon.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/packages/fluentui/react-icons-northstar/src/components/ImageAltTextIcon.tsx b/packages/fluentui/react-icons-northstar/src/components/ImageAltTextIcon.tsx index 8a13503385c6b..fd1980592e50f 100644 --- a/packages/fluentui/react-icons-northstar/src/components/ImageAltTextIcon.tsx +++ b/packages/fluentui/react-icons-northstar/src/components/ImageAltTextIcon.tsx @@ -5,7 +5,13 @@ import { iconClassNames } from '../utils/iconClassNames'; export const ImageAltTextIcon = createSvgIcon({ svg: ({ classes }) => ( - +