diff --git a/CHANGELOG.md b/CHANGELOG.md index 54881d715c..fc162f26d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ### Features - Add predefined icon set for the usages in the `Input`, `Dropdown` and `AccordionTitle` components @mnajdova ([#1120](https://github.com/stardust-ui/react/pull/1120)) - Add `Popup` styles to Teams Dark and High Contrast themes @kuzhelov ([#1121](https://github.com/stardust-ui/react/pull/1121)) +- export `flag` icon in Teams theme @jaanus03 ([#1133](https://github.com/stardust-ui/react/pull/1133)) ### BREAKING CHANGES - `color` and `backgroundColor` variables were moved from `PopupContent` to `popup` slot of `Popup` component @kuzhelov ([#1121](https://github.com/stardust-ui/react/pull/1121)) diff --git a/packages/react/src/themes/teams/components/Icon/svg/icons/flag.tsx b/packages/react/src/themes/teams/components/Icon/svg/icons/flag.tsx new file mode 100644 index 0000000000..88bba3eb7e --- /dev/null +++ b/packages/react/src/themes/teams/components/Icon/svg/icons/flag.tsx @@ -0,0 +1,22 @@ +import * as React from 'react' +import cx from 'classnames' +import { TeamsProcessedSvgIconSpec } from '../types' +import { teamsIconClassNames } from '../teamsIconClassNames' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} 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 09428fd6d2..38f0b5cc11 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 @@ -37,6 +37,7 @@ import filesSketch from './filesSketch' import filesSound from './filesSound' import filesTxt from './filesTxt' import filesZip from './filesZip' +import flag from './flag' import download from './download' import edit from './edit' import email from './email' @@ -141,6 +142,7 @@ export default { 'files-sound': filesSound, 'files-txt': filesTxt, 'files-zip': filesZip, + flag, download, edit, email,