diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ec04df7da..b4e8087c65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - Add `sync` icon to Teams theme @codepretty ([#1973](https://github.com/stardust-ui/react/pull/1973)) - Updating category colors palette and schemes in Teams theme @codepretty ([#1994](https://github.com/stardust-ui/react/pull/1994)) - Add `bell` icon to Teams theme @codepretty ([#1993](https://github.com/stardust-ui/react/pull/1993)) +- Add `thumbtack`, `thumbtack-slash` and `question-circle` icons to Teams theme @codepretty ([#2000](https://github.com/stardust-ui/react/pull/2000)) ## [v0.39.0](https://github.com/stardust-ui/react/tree/v0.39.0) (2019-09-23) diff --git a/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-compose-extension-pin.tsx b/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-compose-extension-pin.tsx index 604d88b706..e0a63ab6aa 100644 --- a/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-compose-extension-pin.tsx +++ b/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-compose-extension-pin.tsx @@ -8,4 +8,5 @@ export default { ), styles: {}, + exportedAs: 'thumbtack', } as TeamsProcessedSvgIconSpec diff --git a/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-compose-extension-unpin.tsx b/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-compose-extension-unpin.tsx index d44afb6573..110fbc6c74 100644 --- a/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-compose-extension-unpin.tsx +++ b/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-compose-extension-unpin.tsx @@ -8,4 +8,5 @@ export default { ), styles: {}, + exportedAs: 'thumbtack-slash', } as TeamsProcessedSvgIconSpec diff --git a/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-faq.tsx b/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-faq.tsx index 97b4dcc6be..b04dc88aaa 100644 --- a/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-faq.tsx +++ b/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-faq.tsx @@ -23,4 +23,5 @@ export default { ), styles: {}, + exportedAs: 'questionCircle', } 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 d318a5c9f9..e667e46226 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 @@ -103,6 +103,7 @@ import mic from './mic' import micOff from './micOff' import more from './more' import notes from './notes' +import notificationsMuted from './notificationsMuted' import oneDrive from './oneDrive' import microsoftStream from './microsoftStream' import userPhone from './userPhone' @@ -121,6 +122,7 @@ import poll from './poll' import presenceAvailable from './presenceAvailable' import presenceStroke from './presenceStroke' import qna from './qna' +import questionCircle from './questionCircle' import quote from './quote' import readAloud from './read-aloud' import redbang from './redbang' @@ -146,6 +148,8 @@ import tableDelete from './tableDelete' import teamCreate from './teamCreate' import teams from './teams' import toDoList from './toDoList' +import thumbtack from './thumbtack' +import thumbtackSlash from './thumbtackSlash' import translation from './translation' import trashCan from './trashCan' import triangleDown from './triangleDown' @@ -260,6 +264,7 @@ export default { 'mic-off': micOff, more, 'user-phone': userPhone, + 'notifications-muted': notificationsMuted, 'number-list': numberList, 'open-outside': openOutside, outdent, @@ -275,6 +280,7 @@ export default { 'presence-available': presenceAvailable, 'presence-stroke': presenceStroke, qna, + 'question-circle': questionCircle, quote, 'read-aloud': readAloud, redbang, @@ -294,6 +300,8 @@ export default { 'table-add': tableAdd, 'table-delete': tableDelete, teams, + thumbtack, + 'thumbtack-slash': thumbtackSlash, 'to-do-list': toDoList, translation, 'trash-can': trashCan, diff --git a/packages/react/src/themes/teams/components/Icon/svg/icons/notificationsMuted.tsx b/packages/react/src/themes/teams/components/Icon/svg/icons/notificationsMuted.tsx new file mode 100644 index 0000000000..6270d6b98d --- /dev/null +++ b/packages/react/src/themes/teams/components/Icon/svg/icons/notificationsMuted.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/questionCircle.tsx b/packages/react/src/themes/teams/components/Icon/svg/icons/questionCircle.tsx new file mode 100644 index 0000000000..97b4dcc6be --- /dev/null +++ b/packages/react/src/themes/teams/components/Icon/svg/icons/questionCircle.tsx @@ -0,0 +1,26 @@ +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/thumbtack.tsx b/packages/react/src/themes/teams/components/Icon/svg/icons/thumbtack.tsx new file mode 100644 index 0000000000..c8f849feba --- /dev/null +++ b/packages/react/src/themes/teams/components/Icon/svg/icons/thumbtack.tsx @@ -0,0 +1,93 @@ +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/thumbtackSlash.tsx b/packages/react/src/themes/teams/components/Icon/svg/icons/thumbtackSlash.tsx new file mode 100644 index 0000000000..fc0c6d33d6 --- /dev/null +++ b/packages/react/src/themes/teams/components/Icon/svg/icons/thumbtackSlash.tsx @@ -0,0 +1,101 @@ +import * as React from 'react' +import cx from 'classnames' +import { TeamsProcessedSvgIconSpec } from '../types' +import { teamsIconClassNames } from '../teamsIconClassNames' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsProcessedSvgIconSpec