diff --git a/CHANGELOG.md b/CHANGELOG.md index 9217cf3427..b11a0f3e62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [Unreleased] ### Features +- Add all default size Teams icons processed & ready to be consumed by Stardust as needed @codepretty ([#478](https://github.com/stardust-ui/react/pull/478)) - Add `Tree` Component @priyankar205 ([#479] (https://github.com/stardust-ui/react/pull/479)) diff --git a/docs/src/components/Sidebar/Sidebar.tsx b/docs/src/components/Sidebar/Sidebar.tsx index 0c2c3e957f..873b805b0d 100644 --- a/docs/src/components/Sidebar/Sidebar.tsx +++ b/docs/src/components/Sidebar/Sidebar.tsx @@ -297,6 +297,9 @@ class Sidebar extends React.Component { Popups + + Processed Icons + )} diff --git a/docs/src/prototypes/IconViewer/index.tsx b/docs/src/prototypes/IconViewer/index.tsx new file mode 100644 index 0000000000..a1ebd52473 --- /dev/null +++ b/docs/src/prototypes/IconViewer/index.tsx @@ -0,0 +1,71 @@ +import * as React from 'react' +import { Provider, Grid, Divider, Header, Icon } from '@stardust-ui/react' +import themeWithProcessedIcons from 'src/themes/teams/withProcessedIcons' + +const cellStyles = { + margin: '10px 0', +} + +const processedIconsNamePrefix = 'processedIcons_' + +class IconViewerExample extends React.Component { + render() { + return ( +
+
+ + ( +
+
+ +
+ + + {Object.keys(theme.icons) + .filter(name => name.startsWith(processedIconsNamePrefix)) + .sort() + .map(name => ( +
+ +
+ {name.replace(processedIconsNamePrefix, '')} +
+ ))} +
+
+
+ +
+ + + {Object.keys(theme.icons) + .filter(name => name.startsWith(processedIconsNamePrefix)) + .sort() + .map(name => ( +
+ +
+ {name.replace(processedIconsNamePrefix, '')} outline +
+ ))} +
+
+
+ )} + /> +
+
+ ) + } +} + +export default IconViewerExample diff --git a/docs/src/routes.tsx b/docs/src/routes.tsx index 9a94a8ee65..7510afb15d 100644 --- a/docs/src/routes.tsx +++ b/docs/src/routes.tsx @@ -58,6 +58,12 @@ const Router = () => ( path="/prototype-popups" component={require('./prototypes/popups/index').default} />, + , ]} diff --git a/src/themes/teams/components/Icon/iconVariables.ts b/src/themes/teams/components/Icon/iconVariables.ts index 89cdf8ac8d..f81cc02987 100644 --- a/src/themes/teams/components/Icon/iconVariables.ts +++ b/src/themes/teams/components/Icon/iconVariables.ts @@ -3,6 +3,9 @@ import { pxToRem } from '../../../../lib' export interface IconVariables { [key: string]: string | number | boolean | undefined + redColor?: string + brandColor?: string + outline?: boolean color?: string backgroundColor?: string @@ -22,4 +25,7 @@ export default (siteVars): IconVariables => ({ margin: `0 ${pxToRem(8)} 0 0`, secondaryColor: siteVars.white, disabledColor: siteVars.gray06, + + redColor: siteVars.red, + brandColor: siteVars.brandColor, }) diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/create-index.sh b/src/themes/teams/components/Icon/svg/ProcessedIcons/create-index.sh new file mode 100644 index 0000000000..541458585a --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/create-index.sh @@ -0,0 +1,30 @@ +export importTemplate="import ICONNAME from './ICONPATH'" +export exportTemplate="ICONNAME," +export template="import { TeamsSvgIconSpec } from '../types'\n\n// IMPORTS\n\nexport default {\n // EXPORTS\n} as { [iconName: string]: TeamsSvgIconSpec }" + +FileName="index-new.ts" +echo -e "${template}" > $FileName; + +for icons in $(ls *.tsx); do + echo "Icon is: $icons" + + # GET ICON PATH & NAME + Path=${icons/\.tsx/} + echo "Path is: $Path" + + UnprocessedName=${Path//icons-/processedIcons_} + echo "UnprocessedName is: $UnprocessedName" + + Name=${UnprocessedName//-/} + echo "Name is: $Name" + + # REPLACE INSTANCES IN IMPORT & EXPORT TEMPLATES + ImportTest=$(echo "$importTemplate" | sed "s/ICONNAME/$Name/" | sed "s/ICONPATH/$Path/") + ExportTest=$(echo "$exportTemplate" | sed "s/ICONNAME/$Name/") + + # CREATE IMPORT + sed -i "/IMPORT/a $ImportTest" $FileName + + # CREATE EXPORT + sed -i "/EXPORT/a $ExportTest" $FileName +done diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-accept.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-accept.tsx new file mode 100644 index 0000000000..3c06428fe9 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-accept.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-add-participant.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-add-participant.tsx new file mode 100644 index 0000000000..72125e44e9 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-add-participant.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-add.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-add.tsx new file mode 100644 index 0000000000..9e77621e31 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-add.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-analytics.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-analytics.tsx new file mode 100644 index 0000000000..2ac0c15878 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-analytics.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-apps.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-apps.tsx new file mode 100644 index 0000000000..390f5bec55 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-apps.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-archive.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-archive.tsx new file mode 100644 index 0000000000..d80f0cdbd8 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-archive.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-arrow-down.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-arrow-down.tsx new file mode 100644 index 0000000000..07e0986243 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-arrow-down.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-arrow-left.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-arrow-left.tsx new file mode 100644 index 0000000000..f65e438807 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-arrow-left.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-arrow-right.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-arrow-right.tsx new file mode 100644 index 0000000000..5bb742b888 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-arrow-right.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-arrow-up-small.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-arrow-up-small.tsx new file mode 100644 index 0000000000..11ccbe9591 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-arrow-up-small.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-arrow-up.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-arrow-up.tsx new file mode 100644 index 0000000000..438fe55017 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-arrow-up.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-assignments.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-assignments.tsx new file mode 100644 index 0000000000..1a8393ad44 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-assignments.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-attachment.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-attachment.tsx new file mode 100644 index 0000000000..741e6e1fa4 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-attachment.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-audio.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-audio.tsx new file mode 100644 index 0000000000..b7fa65dc4a --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-audio.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-backspace.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-backspace.tsx new file mode 100644 index 0000000000..9c72db9276 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-backspace.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-badge-add.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-badge-add.tsx new file mode 100644 index 0000000000..3468d80f79 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-badge-add.tsx @@ -0,0 +1,22 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-badge.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-badge.tsx new file mode 100644 index 0000000000..5512caca12 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-badge.tsx @@ -0,0 +1,21 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-bell-mute.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-bell-mute.tsx new file mode 100644 index 0000000000..a4ff213067 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-bell-mute.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-bell.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-bell.tsx new file mode 100644 index 0000000000..ad9d87783c --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-bell.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-block.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-block.tsx new file mode 100644 index 0000000000..a3bccde16a --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-block.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-blur-background.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-blur-background.tsx new file mode 100644 index 0000000000..924de56fea --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-blur-background.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-bold.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-bold.tsx new file mode 100644 index 0000000000..54de49cada --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-bold.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-bookmark.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-bookmark.tsx new file mode 100644 index 0000000000..6de144a925 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-bookmark.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-bot.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-bot.tsx new file mode 100644 index 0000000000..48fffe47e2 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-bot.tsx @@ -0,0 +1,16 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-broadcast-view-fullscreen.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-broadcast-view-fullscreen.tsx new file mode 100644 index 0000000000..fa420792bc --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-broadcast-view-fullscreen.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-broadcast-view-left.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-broadcast-view-left.tsx new file mode 100644 index 0000000000..50bf90be34 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-broadcast-view-left.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-broadcast-view-right.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-broadcast-view-right.tsx new file mode 100644 index 0000000000..61e0d05175 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-broadcast-view-right.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-bullets.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-bullets.tsx new file mode 100644 index 0000000000..63a201b955 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-bullets.tsx @@ -0,0 +1,24 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-calendar.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-calendar.tsx new file mode 100644 index 0000000000..736c5a93b9 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-calendar.tsx @@ -0,0 +1,24 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-admit-all.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-admit-all.tsx new file mode 100644 index 0000000000..9b9c93da8a --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-admit-all.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-alert.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-alert.tsx new file mode 100644 index 0000000000..6d72033eba --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-alert.tsx @@ -0,0 +1,12 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-audio.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-audio.tsx new file mode 100644 index 0000000000..1daa03a6ea --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-audio.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-blocked.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-blocked.tsx new file mode 100644 index 0000000000..ef6c1b61bc --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-blocked.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-control-present-new.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-control-present-new.tsx new file mode 100644 index 0000000000..8bb59d15ee --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-control-present-new.tsx @@ -0,0 +1,12 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-control-stop-presenting-new.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-control-stop-presenting-new.tsx new file mode 100644 index 0000000000..720fbd969a --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-control-stop-presenting-new.tsx @@ -0,0 +1,12 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-dialpad.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-dialpad.tsx new file mode 100644 index 0000000000..2fef680ba7 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-dialpad.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-end.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-end.tsx new file mode 100644 index 0000000000..fc16b27b3e --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-end.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-hold.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-hold.tsx new file mode 100644 index 0000000000..7e594795be --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-hold.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-incoming-video.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-incoming-video.tsx new file mode 100644 index 0000000000..74fa8000a6 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-incoming-video.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-meetup-filled.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-meetup-filled.tsx new file mode 100644 index 0000000000..7b296469ee --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-meetup-filled.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-meetup-line.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-meetup-line.tsx new file mode 100644 index 0000000000..d551b6b84f --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-meetup-line.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-microphone-off-filled.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-microphone-off-filled.tsx new file mode 100644 index 0000000000..5ed22a3ad8 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-microphone-off-filled.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-microphone-unmuting.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-microphone-unmuting.tsx new file mode 100644 index 0000000000..5ed22a3ad8 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-microphone-unmuting.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-missed-line-filled.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-missed-line-filled.tsx new file mode 100644 index 0000000000..8078f9ad25 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-missed-line-filled.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-missed-line.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-missed-line.tsx new file mode 100644 index 0000000000..5c97d33a62 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-missed-line.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-missed.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-missed.tsx new file mode 100644 index 0000000000..6c05868159 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-missed.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-connected.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-connected.tsx new file mode 100644 index 0000000000..9a07a48931 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-connected.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-connecting-line.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-connecting-line.tsx new file mode 100644 index 0000000000..847b120c5f --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-connecting-line.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-connecting.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-connecting.tsx new file mode 100644 index 0000000000..48f6afb4ba --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-connecting.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-ending.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-ending.tsx new file mode 100644 index 0000000000..eda0b87e01 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-ending.tsx @@ -0,0 +1,12 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-failed.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-failed.tsx new file mode 100644 index 0000000000..a740901522 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-failed.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-incoming-line.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-incoming-line.tsx new file mode 100644 index 0000000000..391155acca --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-incoming-line.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-incoming.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-incoming.tsx new file mode 100644 index 0000000000..bb34e19005 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-incoming.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-onhold.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-onhold.tsx new file mode 100644 index 0000000000..523341e016 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-participant-onhold.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-pstn-full.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-pstn-full.tsx new file mode 100644 index 0000000000..8277e916b3 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-pstn-full.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-pstn.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-pstn.tsx new file mode 100644 index 0000000000..72f64562d2 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-pstn.tsx @@ -0,0 +1,14 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-recording.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-recording.tsx new file mode 100644 index 0000000000..f593b9cb53 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-recording.tsx @@ -0,0 +1,12 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-switch-camera.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-switch-camera.tsx new file mode 100644 index 0000000000..c8f589f26c --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-switch-camera.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-transfer-notification.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-transfer-notification.tsx new file mode 100644 index 0000000000..3ea96c1aa2 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-transfer-notification.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-transfer.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-transfer.tsx new file mode 100644 index 0000000000..029bbf8d5e --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-transfer.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-video-filled.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-video-filled.tsx new file mode 100644 index 0000000000..ae1587c4aa --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-video-filled.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-video-line-off.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-video-line-off.tsx new file mode 100644 index 0000000000..660017011c --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-video-line-off.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-video-line.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-video-line.tsx new file mode 100644 index 0000000000..95ef8b368b --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-video-line.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-video.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-video.tsx new file mode 100644 index 0000000000..74fa8000a6 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-video.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call.tsx new file mode 100644 index 0000000000..be1a2ac5c0 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-canvas-addpage.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-canvas-addpage.tsx new file mode 100644 index 0000000000..240020de0d --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-canvas-addpage.tsx @@ -0,0 +1,21 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-changename.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-changename.tsx new file mode 100644 index 0000000000..5eda1abbcc --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-changename.tsx @@ -0,0 +1,15 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-channel-icon.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-channel-icon.tsx new file mode 100644 index 0000000000..1ae6a69413 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-channel-icon.tsx @@ -0,0 +1,15 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chat.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chat.tsx new file mode 100644 index 0000000000..2da39cdf77 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chat.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-checkbox-selected.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-checkbox-selected.tsx new file mode 100644 index 0000000000..58be71ffb5 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-checkbox-selected.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-checkbox-unselected.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-checkbox-unselected.tsx new file mode 100644 index 0000000000..9574c3463d --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-checkbox-unselected.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chevron-down.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chevron-down.tsx new file mode 100644 index 0000000000..d34e5b9564 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chevron-down.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chevron-left.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chevron-left.tsx new file mode 100644 index 0000000000..02a2ff7179 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chevron-left.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chevron-right.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chevron-right.tsx new file mode 100644 index 0000000000..6eef372746 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chevron-right.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chevronmed-left.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chevronmed-left.tsx new file mode 100644 index 0000000000..8d7879469f --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chevronmed-left.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chevronmed-right.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chevronmed-right.tsx new file mode 100644 index 0000000000..4f0947eb9b --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chevronmed-right.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chrome-maximize.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chrome-maximize.tsx new file mode 100644 index 0000000000..40e6c8dc6f --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chrome-maximize.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chrome-minimize.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chrome-minimize.tsx new file mode 100644 index 0000000000..5156c24ec5 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chrome-minimize.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chrome-unmaximize.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chrome-unmaximize.tsx new file mode 100644 index 0000000000..2e89a94b17 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-chrome-unmaximize.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-close.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-close.tsx new file mode 100644 index 0000000000..342b2857f3 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-close.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-closed-caption.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-closed-caption.tsx new file mode 100644 index 0000000000..124224eb15 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-closed-caption.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-code.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-code.tsx new file mode 100644 index 0000000000..dc25ba19c7 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-code.tsx @@ -0,0 +1,14 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-codesnippet.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-codesnippet.tsx new file mode 100644 index 0000000000..f9f151513b --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-codesnippet.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-collapse.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-collapse.tsx new file mode 100644 index 0000000000..7313c73530 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-collapse.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-compose-ext-menu-item.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-compose-ext-menu-item.tsx new file mode 100644 index 0000000000..1e21531920 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-compose-ext-menu-item.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-compose-extension-pin.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-compose-extension-pin.tsx new file mode 100644 index 0000000000..6cbab480f0 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-compose-extension-pin.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-compose-extension-unpin.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-compose-extension-unpin.tsx new file mode 100644 index 0000000000..c7810c7add --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-compose-extension-unpin.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-compose.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-compose.tsx new file mode 100644 index 0000000000..81723a5a1d --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-compose.tsx @@ -0,0 +1,22 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-connector-badge.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-connector-badge.tsx new file mode 100644 index 0000000000..3c77d52e0a --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-connector-badge.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-contact-list.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-contact-list.tsx new file mode 100644 index 0000000000..685b19665d --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-contact-list.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-copy.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-copy.tsx new file mode 100644 index 0000000000..6cae01e1cd --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-copy.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-cortana.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-cortana.tsx new file mode 100644 index 0000000000..05c45f28f4 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-cortana.tsx @@ -0,0 +1,15 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-desktop.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-desktop.tsx new file mode 100644 index 0000000000..4bd9814d98 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-desktop.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-document.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-document.tsx new file mode 100644 index 0000000000..71b87e7383 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-document.tsx @@ -0,0 +1,22 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-download.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-download.tsx new file mode 100644 index 0000000000..68546b48da --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-download.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-downloaded.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-downloaded.tsx new file mode 100644 index 0000000000..a90be37aeb --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-downloaded.tsx @@ -0,0 +1,22 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: { + brandPath: ({ variables: v }) => ({ + fill: v.brandColor, + }), + secondaryPath: ({ variables: v }) => ({ + fill: v.secondaryColor, + }), + }, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-dropdown.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-dropdown.tsx new file mode 100644 index 0000000000..7b3f942772 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-dropdown.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-edit.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-edit.tsx new file mode 100644 index 0000000000..60b1bafc9c --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-edit.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-email.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-email.tsx new file mode 100644 index 0000000000..f6317c8c0a --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-email.tsx @@ -0,0 +1,24 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-emoji.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-emoji.tsx new file mode 100644 index 0000000000..e1ccaabaf6 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-emoji.tsx @@ -0,0 +1,21 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-error.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-error.tsx new file mode 100644 index 0000000000..cf23574305 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-error.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: { + redPath: ({ variables: v }) => ({ + fill: v.redColor, + }), + }, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-expand.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-expand.tsx new file mode 100644 index 0000000000..2336e40b45 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-expand.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-eye-friendlier.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-eye-friendlier.tsx new file mode 100644 index 0000000000..ebf6ecded5 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-eye-friendlier.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-eye-slash.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-eye-slash.tsx new file mode 100644 index 0000000000..0e03540982 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-eye-slash.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-eye.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-eye.tsx new file mode 100644 index 0000000000..a71782ba4d --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-eye.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-faq.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-faq.tsx new file mode 100644 index 0000000000..eac2baec8e --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-faq.tsx @@ -0,0 +1,19 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-feedback.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-feedback.tsx new file mode 100644 index 0000000000..3a43d84512 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-feedback.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-aftereffects.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-aftereffects.tsx new file mode 100644 index 0000000000..c69a72eeea --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-aftereffects.tsx @@ -0,0 +1,13 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-document.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-document.tsx new file mode 100644 index 0000000000..3bc2460c38 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-document.tsx @@ -0,0 +1,13 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-error-full.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-error-full.tsx new file mode 100644 index 0000000000..a922f161a4 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-error-full.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-flash.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-flash.tsx new file mode 100644 index 0000000000..6c05a66169 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-flash.tsx @@ -0,0 +1,14 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-illustrator.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-illustrator.tsx new file mode 100644 index 0000000000..4defe216a2 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-illustrator.tsx @@ -0,0 +1,14 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-indesign.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-indesign.tsx new file mode 100644 index 0000000000..8b5a2d94fe --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-indesign.tsx @@ -0,0 +1,14 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-link.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-link.tsx new file mode 100644 index 0000000000..26ba265ea4 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-link.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-missing.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-missing.tsx new file mode 100644 index 0000000000..01bdd160b4 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-missing.tsx @@ -0,0 +1,12 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-photoshop.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-photoshop.tsx new file mode 100644 index 0000000000..56e676fd55 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-photoshop.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-sound.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-sound.tsx new file mode 100644 index 0000000000..0ea9fb7c34 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-sound.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-upload-small.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-upload-small.tsx new file mode 100644 index 0000000000..1a52d2794c --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-upload-small.tsx @@ -0,0 +1,12 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-upload.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-upload.tsx new file mode 100644 index 0000000000..3580d8bbf8 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files-upload.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files.tsx new file mode 100644 index 0000000000..a7f062d7b4 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-files.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-filter.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-filter.tsx new file mode 100644 index 0000000000..e359f0c261 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-filter.tsx @@ -0,0 +1,17 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-folder-download.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-folder-download.tsx new file mode 100644 index 0000000000..e0c9d92df0 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-folder-download.tsx @@ -0,0 +1,12 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-folder-new.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-folder-new.tsx new file mode 100644 index 0000000000..37e40df7e5 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-folder-new.tsx @@ -0,0 +1,12 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-folder-upload.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-folder-upload.tsx new file mode 100644 index 0000000000..0c943fe288 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-folder-upload.tsx @@ -0,0 +1,12 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-folder.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-folder.tsx new file mode 100644 index 0000000000..9c27066440 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-folder.tsx @@ -0,0 +1,27 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: { + brownPath: () => ({ + fill: '#ddaf52', + }), + otherBrownPath: () => ({ + fill: '#efd084', + }), + }, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-follow-channel.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-follow-channel.tsx new file mode 100644 index 0000000000..107b75c8bd --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-follow-channel.tsx @@ -0,0 +1,16 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-font-color.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-font-color.tsx new file mode 100644 index 0000000000..857091e182 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-font-color.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-font-size.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-font-size.tsx new file mode 100644 index 0000000000..5126d2f10a --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-font-size.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-format.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-format.tsx new file mode 100644 index 0000000000..bd0214275c --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-format.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-fullscreen.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-fullscreen.tsx new file mode 100644 index 0000000000..2265da5731 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-fullscreen.tsx @@ -0,0 +1,19 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-gallery.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-gallery.tsx new file mode 100644 index 0000000000..2ee1303784 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-gallery.tsx @@ -0,0 +1,22 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-gettingstarted.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-gettingstarted.tsx new file mode 100644 index 0000000000..2ea8ce1273 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-gettingstarted.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-gif.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-gif.tsx new file mode 100644 index 0000000000..431136c503 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-gif.tsx @@ -0,0 +1,14 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-giphy.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-giphy.tsx new file mode 100644 index 0000000000..cb38296af7 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-giphy.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-groups.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-groups.tsx new file mode 100644 index 0000000000..82ccf3e325 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-groups.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-headset.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-headset.tsx new file mode 100644 index 0000000000..6a69cf1d11 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-headset.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-helparticle.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-helparticle.tsx new file mode 100644 index 0000000000..c9bcae894b --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-helparticle.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-highlight.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-highlight.tsx new file mode 100644 index 0000000000..d7427e1a5b --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-highlight.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-hive.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-hive.tsx new file mode 100644 index 0000000000..e675aecfe6 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-hive.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-home.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-home.tsx new file mode 100644 index 0000000000..906909837c --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-home.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-image.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-image.tsx new file mode 100644 index 0000000000..e5629b0dcc --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-image.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-indicator.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-indicator.tsx new file mode 100644 index 0000000000..831a11326b --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-indicator.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-inferred.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-inferred.tsx new file mode 100644 index 0000000000..1e885f3fe4 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-inferred.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-info.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-info.tsx new file mode 100644 index 0000000000..63e24bd4e7 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-info.tsx @@ -0,0 +1,21 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-input-invalid.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-input-invalid.tsx new file mode 100644 index 0000000000..db10f394f3 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-input-invalid.tsx @@ -0,0 +1,12 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-input-valid.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-input-valid.tsx new file mode 100644 index 0000000000..863542ffa9 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-input-valid.tsx @@ -0,0 +1,12 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-invite-accepted.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-invite-accepted.tsx new file mode 100644 index 0000000000..4f4caab5d6 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-invite-accepted.tsx @@ -0,0 +1,13 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-invite-cancelled.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-invite-cancelled.tsx new file mode 100644 index 0000000000..d4885c616a --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-invite-cancelled.tsx @@ -0,0 +1,12 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-invite-declined.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-invite-declined.tsx new file mode 100644 index 0000000000..55df7536b5 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-invite-declined.tsx @@ -0,0 +1,13 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-invite-not-responded.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-invite-not-responded.tsx new file mode 100644 index 0000000000..68e1d4cdbb --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-invite-not-responded.tsx @@ -0,0 +1,12 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-invite-person.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-invite-person.tsx new file mode 100644 index 0000000000..bc28900f4f --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-invite-person.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-invite-tentative.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-invite-tentative.tsx new file mode 100644 index 0000000000..779f29aef9 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-invite-tentative.tsx @@ -0,0 +1,13 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-italic.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-italic.tsx new file mode 100644 index 0000000000..2cc06aa59c --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-italic.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-keyboard.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-keyboard.tsx new file mode 100644 index 0000000000..f0f909ab0a --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-keyboard.tsx @@ -0,0 +1,23 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-kollective.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-kollective.tsx new file mode 100644 index 0000000000..1c9e7c0b00 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-kollective.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-leave.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-leave.tsx new file mode 100644 index 0000000000..d33d995684 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-leave.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-like.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-like.tsx new file mode 100644 index 0000000000..606c1de2cd --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-like.tsx @@ -0,0 +1,13 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-liked.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-liked.tsx new file mode 100644 index 0000000000..ab584b92e2 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-liked.tsx @@ -0,0 +1,13 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-link.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-link.tsx new file mode 100644 index 0000000000..6b32756c13 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-link.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-location-off.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-location-off.tsx new file mode 100644 index 0000000000..1dd0759f87 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-location-off.tsx @@ -0,0 +1,12 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-location.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-location.tsx new file mode 100644 index 0000000000..81e1d22926 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-location.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-lock-14.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-lock-14.tsx new file mode 100644 index 0000000000..bdabb129ca --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-lock-14.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-lock-18.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-lock-18.tsx new file mode 100644 index 0000000000..5286f40425 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-lock-18.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-lock.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-lock.tsx new file mode 100644 index 0000000000..3713d65042 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-lock.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-manage-teams.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-manage-teams.tsx new file mode 100644 index 0000000000..c757d6cda2 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-manage-teams.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-mark-as-read.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-mark-as-read.tsx new file mode 100644 index 0000000000..d32ed6c308 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-mark-as-read.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-mark-as-unread.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-mark-as-unread.tsx new file mode 100644 index 0000000000..fc4795b42f --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-mark-as-unread.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-media-off.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-media-off.tsx new file mode 100644 index 0000000000..102463a5fd --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-media-off.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-meeting-new.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-meeting-new.tsx new file mode 100644 index 0000000000..09a5599d85 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-meeting-new.tsx @@ -0,0 +1,21 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-meeting-notes.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-meeting-notes.tsx new file mode 100644 index 0000000000..c2a6333f53 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-meeting-notes.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-megaphone.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-megaphone.tsx new file mode 100644 index 0000000000..40cf3890ec --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-megaphone.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-mention.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-mention.tsx new file mode 100644 index 0000000000..c94aa7201e --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-mention.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-menu-light.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-menu-light.tsx new file mode 100644 index 0000000000..484368ac4a --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-menu-light.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-menu.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-menu.tsx new file mode 100644 index 0000000000..33ae474dfe --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-menu.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-mic-off.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-mic-off.tsx new file mode 100644 index 0000000000..0a1e801f06 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-mic-off.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-mic.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-mic.tsx new file mode 100644 index 0000000000..4370ef478c --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-mic.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-more.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-more.tsx new file mode 100644 index 0000000000..76ca0fa7ff --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-more.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-mov.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-mov.tsx new file mode 100644 index 0000000000..fb8de9469c --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-mov.tsx @@ -0,0 +1,21 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-move.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-move.tsx new file mode 100644 index 0000000000..7f06b01f54 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-move.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-canvas.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-canvas.tsx new file mode 100644 index 0000000000..901bb90d31 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-canvas.tsx @@ -0,0 +1,24 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-delve.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-delve.tsx new file mode 100644 index 0000000000..04bcd93dc3 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-delve.tsx @@ -0,0 +1,14 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-exchange.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-exchange.tsx new file mode 100644 index 0000000000..f89b589685 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-exchange.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-office.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-office.tsx new file mode 100644 index 0000000000..0c57b02425 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-office.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-onedrive.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-onedrive.tsx new file mode 100644 index 0000000000..45961c81d5 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-onedrive.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-onenote-online.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-onenote-online.tsx new file mode 100644 index 0000000000..cbcc32cc42 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-onenote-online.tsx @@ -0,0 +1,13 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-onenote.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-onenote.tsx new file mode 100644 index 0000000000..cbcc32cc42 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-onenote.tsx @@ -0,0 +1,13 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-outlook-colored.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-outlook-colored.tsx new file mode 100644 index 0000000000..331383146e --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-outlook-colored.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-outlook.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-outlook.tsx new file mode 100644 index 0000000000..8d4f70a679 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-outlook.tsx @@ -0,0 +1,13 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-planner.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-planner.tsx new file mode 100644 index 0000000000..825a69d1d4 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-planner.tsx @@ -0,0 +1,15 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-powerbi.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-powerbi.tsx new file mode 100644 index 0000000000..2cca6a14d1 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-powerbi.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-ppt-online.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-ppt-online.tsx new file mode 100644 index 0000000000..52df0b601d --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-ppt-online.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-ppt.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-ppt.tsx new file mode 100644 index 0000000000..52df0b601d --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-ppt.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-sharepoint.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-sharepoint.tsx new file mode 100644 index 0000000000..02855c63f0 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-sharepoint.tsx @@ -0,0 +1,13 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-sp-doc-library.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-sp-doc-library.tsx new file mode 100644 index 0000000000..957a57b1b5 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-sp-doc-library.tsx @@ -0,0 +1,14 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-stream.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-stream.tsx new file mode 100644 index 0000000000..4314501c1a --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-stream.tsx @@ -0,0 +1,13 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-teams.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-teams.tsx new file mode 100644 index 0000000000..012bd7ceb0 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-teams.tsx @@ -0,0 +1,13 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-visio.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-visio.tsx new file mode 100644 index 0000000000..c07e491472 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-visio.tsx @@ -0,0 +1,13 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-word-online.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-word-online.tsx new file mode 100644 index 0000000000..fdba205658 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-word-online.tsx @@ -0,0 +1,13 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-word.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-word.tsx new file mode 100644 index 0000000000..80b351a396 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-word.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-xl-online.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-xl-online.tsx new file mode 100644 index 0000000000..86e7a23ec5 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-xl-online.tsx @@ -0,0 +1,13 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-xl.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-xl.tsx new file mode 100644 index 0000000000..86e7a23ec5 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-msft-xl.tsx @@ -0,0 +1,13 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-mutechat.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-mutechat.tsx new file mode 100644 index 0000000000..af629a9de4 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-mutechat.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-my-activity.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-my-activity.tsx new file mode 100644 index 0000000000..70b719a370 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-my-activity.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-new-contactgroup.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-new-contactgroup.tsx new file mode 100644 index 0000000000..f1458ecdef --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-new-contactgroup.tsx @@ -0,0 +1,24 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-newtab.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-newtab.tsx new file mode 100644 index 0000000000..34faf75eb7 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-newtab.tsx @@ -0,0 +1,13 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-no-chat.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-no-chat.tsx new file mode 100644 index 0000000000..63fc56dd81 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-no-chat.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-notes.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-notes.tsx new file mode 100644 index 0000000000..26c1680af4 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-notes.tsx @@ -0,0 +1,19 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-notification-off.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-notification-off.tsx new file mode 100644 index 0000000000..71aa11516f --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-notification-off.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-number-list.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-number-list.tsx new file mode 100644 index 0000000000..5c6f871b5a --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-number-list.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-onenote-section.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-onenote-section.tsx new file mode 100644 index 0000000000..b9d3121e12 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-onenote-section.tsx @@ -0,0 +1,15 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-oof.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-oof.tsx new file mode 100644 index 0000000000..165055cee3 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-oof.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-open-external-link-off.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-open-external-link-off.tsx new file mode 100644 index 0000000000..be8705009b --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-open-external-link-off.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-open-inside-small.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-open-inside-small.tsx new file mode 100644 index 0000000000..256708eb08 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-open-inside-small.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-open-inside.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-open-inside.tsx new file mode 100644 index 0000000000..f0ecebc220 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-open-inside.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-open-new-window-filled.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-open-new-window-filled.tsx new file mode 100644 index 0000000000..de98288048 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-open-new-window-filled.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-open-new-window.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-open-new-window.tsx new file mode 100644 index 0000000000..da6588650b --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-open-new-window.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-open-outside.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-open-outside.tsx new file mode 100644 index 0000000000..d2ba340af8 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-open-outside.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-org-wide.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-org-wide.tsx new file mode 100644 index 0000000000..ef80cda71b --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-org-wide.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-org.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-org.tsx new file mode 100644 index 0000000000..c8c05696ba --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-org.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-outline.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-outline.tsx new file mode 100644 index 0000000000..2a8baa4861 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-outline.tsx @@ -0,0 +1,23 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-participant-remove.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-participant-remove.tsx new file mode 100644 index 0000000000..12ca43a4af --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-participant-remove.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-paste.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-paste.tsx new file mode 100644 index 0000000000..e296935888 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-paste.tsx @@ -0,0 +1,12 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-patharrow.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-patharrow.tsx new file mode 100644 index 0000000000..addb5c3ebe --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-patharrow.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-pc-audio-stop.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-pc-audio-stop.tsx new file mode 100644 index 0000000000..b8a15eaf50 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-pc-audio-stop.tsx @@ -0,0 +1,14 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-pc-audio.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-pc-audio.tsx new file mode 100644 index 0000000000..543e7e27ec --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-pc-audio.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-pdf.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-pdf.tsx new file mode 100644 index 0000000000..f1cf13a2ad --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-pdf.tsx @@ -0,0 +1,13 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-person.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-person.tsx new file mode 100644 index 0000000000..ad4100f673 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-person.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-pin.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-pin.tsx new file mode 100644 index 0000000000..5876dfeea2 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-pin.tsx @@ -0,0 +1,12 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-play-forward.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-play-forward.tsx new file mode 100644 index 0000000000..84206f64ac --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-play-forward.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-play-pause.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-play-pause.tsx new file mode 100644 index 0000000000..e1ab6d85aa --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-play-pause.tsx @@ -0,0 +1,13 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-play-sound-mute.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-play-sound-mute.tsx new file mode 100644 index 0000000000..7cc7395c84 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-play-sound-mute.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-play.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-play.tsx new file mode 100644 index 0000000000..9dfdb37b88 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-play.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-plus-circled.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-plus-circled.tsx new file mode 100644 index 0000000000..1b58ef68ff --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-plus-circled.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-promoted.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-promoted.tsx new file mode 100644 index 0000000000..36146d529c --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-promoted.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-qna.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-qna.tsx new file mode 100644 index 0000000000..78991fa07e --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-qna.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-quick-response.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-quick-response.tsx new file mode 100644 index 0000000000..fff686ea52 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-quick-response.tsx @@ -0,0 +1,14 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-quote.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-quote.tsx new file mode 100644 index 0000000000..6026fc091d --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-quote.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-read-aloud.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-read-aloud.tsx new file mode 100644 index 0000000000..90d4d5db1c --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-read-aloud.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-recent.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-recent.tsx new file mode 100644 index 0000000000..177a5abad0 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-recent.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-recents.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-recents.tsx new file mode 100644 index 0000000000..6c534a35bc --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-recents.tsx @@ -0,0 +1,14 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-recurrence.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-recurrence.tsx new file mode 100644 index 0000000000..13dafe6ccb --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-recurrence.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-redbang.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-redbang.tsx new file mode 100644 index 0000000000..d255f507a6 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-redbang.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-refresh.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-refresh.tsx new file mode 100644 index 0000000000..57207d979a --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-refresh.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-reply.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-reply.tsx new file mode 100644 index 0000000000..227b58c2fa --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-reply.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-reset-zoom.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-reset-zoom.tsx new file mode 100644 index 0000000000..21d2e0f053 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-reset-zoom.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-retry.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-retry.tsx new file mode 100644 index 0000000000..51e914161e --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-retry.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-roster.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-roster.tsx new file mode 100644 index 0000000000..4ba58f30ff --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-roster.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-screen-zoom-in.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-screen-zoom-in.tsx new file mode 100644 index 0000000000..44a07ed3b9 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-screen-zoom-in.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-screen-zoom-out.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-screen-zoom-out.tsx new file mode 100644 index 0000000000..d65e9a9b77 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-screen-zoom-out.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-search.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-search.tsx new file mode 100644 index 0000000000..a65b0e7b18 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-search.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-send.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-send.tsx new file mode 100644 index 0000000000..08ced2b2f6 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-send.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-settings.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-settings.tsx new file mode 100644 index 0000000000..384c122aa0 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-settings.tsx @@ -0,0 +1,19 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-sfb-viewbox-32.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-sfb-viewbox-32.tsx new file mode 100644 index 0000000000..043ed6e5dc --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-sfb-viewbox-32.tsx @@ -0,0 +1,17 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-share-object.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-share-object.tsx new file mode 100644 index 0000000000..ff1a6e93a9 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-share-object.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-share.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-share.tsx new file mode 100644 index 0000000000..c0cd105550 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-share.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-sketch.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-sketch.tsx new file mode 100644 index 0000000000..721a935669 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-sketch.tsx @@ -0,0 +1,13 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-speaker-off.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-speaker-off.tsx new file mode 100644 index 0000000000..28a23b43d9 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-speaker-off.tsx @@ -0,0 +1,16 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-speaker-slashed.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-speaker-slashed.tsx new file mode 100644 index 0000000000..6c0e521173 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-speaker-slashed.tsx @@ -0,0 +1,13 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-star.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-star.tsx new file mode 100644 index 0000000000..eb05aec5e7 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-star.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-starred.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-starred.tsx new file mode 100644 index 0000000000..51a1f0aae6 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-starred.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-status-yo.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-status-yo.tsx new file mode 100644 index 0000000000..53b0db95a6 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-status-yo.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-sticker.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-sticker.tsx new file mode 100644 index 0000000000..65f4e4cc10 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-sticker.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-tab-badge.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-tab-badge.tsx new file mode 100644 index 0000000000..5bdd254ede --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-tab-badge.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-table-add.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-table-add.tsx new file mode 100644 index 0000000000..7173f69819 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-table-add.tsx @@ -0,0 +1,24 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-table-delete.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-table-delete.tsx new file mode 100644 index 0000000000..eb1a1e1173 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-table-delete.tsx @@ -0,0 +1,24 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-table.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-table.tsx new file mode 100644 index 0000000000..af627bb5ab --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-table.tsx @@ -0,0 +1,22 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-team-create.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-team-create.tsx new file mode 100644 index 0000000000..2b06bb3c96 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-team-create.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-team-discover.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-team-discover.tsx new file mode 100644 index 0000000000..2b06bb3c96 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-team-discover.tsx @@ -0,0 +1,18 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-teams.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-teams.tsx new file mode 100644 index 0000000000..5c3d5ba8ce --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-teams.tsx @@ -0,0 +1,21 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-tentative.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-tentative.tsx new file mode 100644 index 0000000000..4afc260ca6 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-tentative.tsx @@ -0,0 +1,12 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-time-zone-day.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-time-zone-day.tsx new file mode 100644 index 0000000000..ba96b79cb8 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-time-zone-day.tsx @@ -0,0 +1,21 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-time-zone-night.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-time-zone-night.tsx new file mode 100644 index 0000000000..e990d27371 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-time-zone-night.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-translation.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-translation.tsx new file mode 100644 index 0000000000..818f1bfc78 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-translation.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-trash-can.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-trash-can.tsx new file mode 100644 index 0000000000..bc64418df9 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-trash-can.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-trending.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-trending.tsx new file mode 100644 index 0000000000..cc291e6821 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-trending.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-triangle-diagonal-right-small.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-triangle-diagonal-right-small.tsx new file mode 100644 index 0000000000..ab5c44f98f --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-triangle-diagonal-right-small.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-triangle-down-small.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-triangle-down-small.tsx new file mode 100644 index 0000000000..1301cb3d3d --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-triangle-down-small.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-triangle-right-small.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-triangle-right-small.tsx new file mode 100644 index 0000000000..c318880b7b --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-triangle-right-small.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-triangle-up-small.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-triangle-up-small.tsx new file mode 100644 index 0000000000..5c0924bd92 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-triangle-up-small.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-txt.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-txt.tsx new file mode 100644 index 0000000000..ec16513f56 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-txt.tsx @@ -0,0 +1,12 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-underline.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-underline.tsx new file mode 100644 index 0000000000..907d34d9bb --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-underline.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-unfollow-channel.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-unfollow-channel.tsx new file mode 100644 index 0000000000..c153b9bd43 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-unfollow-channel.tsx @@ -0,0 +1,16 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-urgent.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-urgent.tsx new file mode 100644 index 0000000000..cf93f38ba3 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-urgent.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-video-off.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-video-off.tsx new file mode 100644 index 0000000000..11f8e7cc29 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-video-off.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-video.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-video.tsx new file mode 100644 index 0000000000..6adb69acaf --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-video.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-voicemail.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-voicemail.tsx new file mode 100644 index 0000000000..2d19f7acef --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-voicemail.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-waffle.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-waffle.tsx new file mode 100644 index 0000000000..e8007b7df6 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-waffle.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-website.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-website.tsx new file mode 100644 index 0000000000..ae7eb73ee4 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-website.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-whiteboard.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-whiteboard.tsx new file mode 100644 index 0000000000..f22c808d62 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-whiteboard.tsx @@ -0,0 +1,20 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-yammer.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-yammer.tsx new file mode 100644 index 0000000000..42e9f044ea --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-yammer.tsx @@ -0,0 +1,11 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-youtube.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-youtube.tsx new file mode 100644 index 0000000000..251f242378 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-youtube.tsx @@ -0,0 +1,12 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-zip.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-zip.tsx new file mode 100644 index 0000000000..71ec07dd54 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-zip.tsx @@ -0,0 +1,15 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-zoom-in.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-zoom-in.tsx new file mode 100644 index 0000000000..7b0582c9df --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-zoom-in.tsx @@ -0,0 +1,19 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-zoom-out.tsx b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-zoom-out.tsx new file mode 100644 index 0000000000..32d018c400 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-zoom-out.tsx @@ -0,0 +1,19 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/index-new.ts b/src/themes/teams/components/Icon/svg/ProcessedIcons/index-new.ts new file mode 100644 index 0000000000..48cc132ecf --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/index-new.ts @@ -0,0 +1,595 @@ +import { TeamsSvgIconSpec } from '../types' + +// IMPORTS +import processedIcons_zoomout from './icons-zoom-out' +import processedIcons_zoomin from './icons-zoom-in' +import processedIcons_zip from './icons-zip' +import processedIcons_youtube from './icons-youtube' +import processedIcons_yammer from './icons-yammer' +import processedIcons_whiteboard from './icons-whiteboard' +import processedIcons_website from './icons-website' +import processedIcons_waffle from './icons-waffle' +import processedIcons_voicemail from './icons-voicemail' +import processedIcons_videooff from './icons-video-off' +import processedIcons_video from './icons-video' +import processedIcons_urgent from './icons-urgent' +import processedIcons_unfollowchannel from './icons-unfollow-channel' +import processedIcons_underline from './icons-underline' +import processedIcons_txt from './icons-txt' +import processedIcons_triangleupsmall from './icons-triangle-up-small' +import processedIcons_trianglerightsmall from './icons-triangle-right-small' +import processedIcons_triangledownsmall from './icons-triangle-down-small' +import processedIcons_trianglediagonalrightsmall from './icons-triangle-diagonal-right-small' +import processedIcons_trending from './icons-trending' +import processedIcons_trashcan from './icons-trash-can' +import processedIcons_translation from './icons-translation' +import processedIcons_timezonenight from './icons-time-zone-night' +import processedIcons_timezoneday from './icons-time-zone-day' +import processedIcons_tentative from './icons-tentative' +import processedIcons_teams from './icons-teams' +import processedIcons_teamdiscover from './icons-team-discover' +import processedIcons_teamcreate from './icons-team-create' +import processedIcons_tabledelete from './icons-table-delete' +import processedIcons_tableadd from './icons-table-add' +import processedIcons_table from './icons-table' +import processedIcons_tabbadge from './icons-tab-badge' +import processedIcons_sticker from './icons-sticker' +import processedIcons_statusyo from './icons-status-yo' +import processedIcons_starred from './icons-starred' +import processedIcons_star from './icons-star' +import processedIcons_speakerslashed from './icons-speaker-slashed' +import processedIcons_speakeroff from './icons-speaker-off' +import processedIcons_sketch from './icons-sketch' +import processedIcons_shareobject from './icons-share-object' +import processedIcons_share from './icons-share' +import processedIcons_sfbviewbox32 from './icons-sfb-viewbox-32' +import processedIcons_settings from './icons-settings' +import processedIcons_send from './icons-send' +import processedIcons_search from './icons-search' +import processedIcons_screenzoomout from './icons-screen-zoom-out' +import processedIcons_screenzoomin from './icons-screen-zoom-in' +import processedIcons_roster from './icons-roster' +import processedIcons_retry from './icons-retry' +import processedIcons_resetzoom from './icons-reset-zoom' +import processedIcons_reply from './icons-reply' +import processedIcons_refresh from './icons-refresh' +import processedIcons_redbang from './icons-redbang' +import processedIcons_recurrence from './icons-recurrence' +import processedIcons_recents from './icons-recents' +import processedIcons_recent from './icons-recent' +import processedIcons_readaloud from './icons-read-aloud' +import processedIcons_quote from './icons-quote' +import processedIcons_quickresponse from './icons-quick-response' +import processedIcons_qna from './icons-qna' +import processedIcons_promoted from './icons-promoted' +import processedIcons_pluscircled from './icons-plus-circled' +import processedIcons_playsoundmute from './icons-play-sound-mute' +import processedIcons_playpause from './icons-play-pause' +import processedIcons_playforward from './icons-play-forward' +import processedIcons_play from './icons-play' +import processedIcons_pin from './icons-pin' +import processedIcons_person from './icons-person' +import processedIcons_pdf from './icons-pdf' +import processedIcons_pcaudiostop from './icons-pc-audio-stop' +import processedIcons_pcaudio from './icons-pc-audio' +import processedIcons_patharrow from './icons-patharrow' +import processedIcons_paste from './icons-paste' +import processedIcons_participantremove from './icons-participant-remove' +import processedIcons_outline from './icons-outline' +import processedIcons_orgwide from './icons-org-wide' +import processedIcons_org from './icons-org' +import processedIcons_openoutside from './icons-open-outside' +import processedIcons_opennewwindowfilled from './icons-open-new-window-filled' +import processedIcons_opennewwindow from './icons-open-new-window' +import processedIcons_openinsidesmall from './icons-open-inside-small' +import processedIcons_openinside from './icons-open-inside' +import processedIcons_openexternallinkoff from './icons-open-external-link-off' +import processedIcons_oof from './icons-oof' +import processedIcons_onenotesection from './icons-onenote-section' +import processedIcons_numberlist from './icons-number-list' +import processedIcons_notificationoff from './icons-notification-off' +import processedIcons_notes from './icons-notes' +import processedIcons_nochat from './icons-no-chat' +import processedIcons_newtab from './icons-newtab' +import processedIcons_newcontactgroup from './icons-new-contactgroup' +import processedIcons_myactivity from './icons-my-activity' +import processedIcons_mutechat from './icons-mutechat' +import processedIcons_msftxlonline from './icons-msft-xl-online' +import processedIcons_msftxl from './icons-msft-xl' +import processedIcons_msftwordonline from './icons-msft-word-online' +import processedIcons_msftword from './icons-msft-word' +import processedIcons_msftvisio from './icons-msft-visio' +import processedIcons_msftteams from './icons-msft-teams' +import processedIcons_msftstream from './icons-msft-stream' +import processedIcons_msftspdoclibrary from './icons-msft-sp-doc-library' +import processedIcons_msftsharepoint from './icons-msft-sharepoint' +import processedIcons_msftpptonline from './icons-msft-ppt-online' +import processedIcons_msftppt from './icons-msft-ppt' +import processedIcons_msftpowerbi from './icons-msft-powerbi' +import processedIcons_msftplanner from './icons-msft-planner' +import processedIcons_msftoutlookcolored from './icons-msft-outlook-colored' +import processedIcons_msftoutlook from './icons-msft-outlook' +import processedIcons_msftonenoteonline from './icons-msft-onenote-online' +import processedIcons_msftonenote from './icons-msft-onenote' +import processedIcons_msftonedrive from './icons-msft-onedrive' +import processedIcons_msftoffice from './icons-msft-office' +import processedIcons_msftexchange from './icons-msft-exchange' +import processedIcons_msftdelve from './icons-msft-delve' +import processedIcons_msftcanvas from './icons-msft-canvas' +import processedIcons_move from './icons-move' +import processedIcons_mov from './icons-mov' +import processedIcons_more from './icons-more' +import processedIcons_micoff from './icons-mic-off' +import processedIcons_mic from './icons-mic' +import processedIcons_menulight from './icons-menu-light' +import processedIcons_menu from './icons-menu' +import processedIcons_mention from './icons-mention' +import processedIcons_megaphone from './icons-megaphone' +import processedIcons_meetingnotes from './icons-meeting-notes' +import processedIcons_meetingnew from './icons-meeting-new' +import processedIcons_mediaoff from './icons-media-off' +import processedIcons_markasunread from './icons-mark-as-unread' +import processedIcons_markasread from './icons-mark-as-read' +import processedIcons_manageteams from './icons-manage-teams' +import processedIcons_lock18 from './icons-lock-18' +import processedIcons_lock14 from './icons-lock-14' +import processedIcons_lock from './icons-lock' +import processedIcons_locationoff from './icons-location-off' +import processedIcons_location from './icons-location' +import processedIcons_link from './icons-link' +import processedIcons_liked from './icons-liked' +import processedIcons_like from './icons-like' +import processedIcons_leave from './icons-leave' +import processedIcons_kollective from './icons-kollective' +import processedIcons_keyboard from './icons-keyboard' +import processedIcons_italic from './icons-italic' +import processedIcons_invitetentative from './icons-invite-tentative' +import processedIcons_inviteperson from './icons-invite-person' +import processedIcons_invitenotresponded from './icons-invite-not-responded' +import processedIcons_invitedeclined from './icons-invite-declined' +import processedIcons_invitecancelled from './icons-invite-cancelled' +import processedIcons_inviteaccepted from './icons-invite-accepted' +import processedIcons_inputvalid from './icons-input-valid' +import processedIcons_inputinvalid from './icons-input-invalid' +import processedIcons_info from './icons-info' +import processedIcons_inferred from './icons-inferred' +import processedIcons_indicator from './icons-indicator' +import processedIcons_image from './icons-image' +import processedIcons_home from './icons-home' +import processedIcons_hive from './icons-hive' +import processedIcons_highlight from './icons-highlight' +import processedIcons_helparticle from './icons-helparticle' +import processedIcons_headset from './icons-headset' +import processedIcons_groups from './icons-groups' +import processedIcons_giphy from './icons-giphy' +import processedIcons_gif from './icons-gif' +import processedIcons_gettingstarted from './icons-gettingstarted' +import processedIcons_gallery from './icons-gallery' +import processedIcons_fullscreen from './icons-fullscreen' +import processedIcons_format from './icons-format' +import processedIcons_fontsize from './icons-font-size' +import processedIcons_fontcolor from './icons-font-color' +import processedIcons_followchannel from './icons-follow-channel' +import processedIcons_folderupload from './icons-folder-upload' +import processedIcons_foldernew from './icons-folder-new' +import processedIcons_folderdownload from './icons-folder-download' +import processedIcons_folder from './icons-folder' +import processedIcons_filter from './icons-filter' +import processedIcons_filesuploadsmall from './icons-files-upload-small' +import processedIcons_filesupload from './icons-files-upload' +import processedIcons_filessound from './icons-files-sound' +import processedIcons_filesphotoshop from './icons-files-photoshop' +import processedIcons_filesmissing from './icons-files-missing' +import processedIcons_fileslink from './icons-files-link' +import processedIcons_filesindesign from './icons-files-indesign' +import processedIcons_filesillustrator from './icons-files-illustrator' +import processedIcons_filesflash from './icons-files-flash' +import processedIcons_fileserrorfull from './icons-files-error-full' +import processedIcons_filesdocument from './icons-files-document' +import processedIcons_filesaftereffects from './icons-files-aftereffects' +import processedIcons_files from './icons-files' +import processedIcons_feedback from './icons-feedback' +import processedIcons_faq from './icons-faq' +import processedIcons_eyeslash from './icons-eye-slash' +import processedIcons_eyefriendlier from './icons-eye-friendlier' +import processedIcons_eye from './icons-eye' +import processedIcons_expand from './icons-expand' +import processedIcons_error from './icons-error' +import processedIcons_emoji from './icons-emoji' +import processedIcons_email from './icons-email' +import processedIcons_edit from './icons-edit' +import processedIcons_dropdown from './icons-dropdown' +import processedIcons_downloaded from './icons-downloaded' +import processedIcons_download from './icons-download' +import processedIcons_document from './icons-document' +import processedIcons_desktop from './icons-desktop' +import processedIcons_cortana from './icons-cortana' +import processedIcons_copy from './icons-copy' +import processedIcons_contactlist from './icons-contact-list' +import processedIcons_connectorbadge from './icons-connector-badge' +import processedIcons_composeextmenuitem from './icons-compose-ext-menu-item' +import processedIcons_composeextensionunpin from './icons-compose-extension-unpin' +import processedIcons_composeextensionpin from './icons-compose-extension-pin' +import processedIcons_compose from './icons-compose' +import processedIcons_collapse from './icons-collapse' +import processedIcons_codesnippet from './icons-codesnippet' +import processedIcons_code from './icons-code' +import processedIcons_closedcaption from './icons-closed-caption' +import processedIcons_close from './icons-close' +import processedIcons_chromeunmaximize from './icons-chrome-unmaximize' +import processedIcons_chromeminimize from './icons-chrome-minimize' +import processedIcons_chromemaximize from './icons-chrome-maximize' +import processedIcons_chevronright from './icons-chevron-right' +import processedIcons_chevronmedright from './icons-chevronmed-right' +import processedIcons_chevronmedleft from './icons-chevronmed-left' +import processedIcons_chevronleft from './icons-chevron-left' +import processedIcons_chevrondown from './icons-chevron-down' +import processedIcons_checkboxunselected from './icons-checkbox-unselected' +import processedIcons_checkboxselected from './icons-checkbox-selected' +import processedIcons_chat from './icons-chat' +import processedIcons_channelicon from './icons-channel-icon' +import processedIcons_changename from './icons-changename' +import processedIcons_canvasaddpage from './icons-canvas-addpage' +import processedIcons_callvideolineoff from './icons-call-video-line-off' +import processedIcons_callvideoline from './icons-call-video-line' +import processedIcons_callvideofilled from './icons-call-video-filled' +import processedIcons_callvideo from './icons-call-video' +import processedIcons_calltransfernotification from './icons-call-transfer-notification' +import processedIcons_calltransfer from './icons-call-transfer' +import processedIcons_callswitchcamera from './icons-call-switch-camera' +import processedIcons_callrecording from './icons-call-recording' +import processedIcons_callpstnfull from './icons-call-pstn-full' +import processedIcons_callpstn from './icons-call-pstn' +import processedIcons_callparticipantonhold from './icons-call-participant-onhold' +import processedIcons_callparticipantincomingline from './icons-call-participant-incoming-line' +import processedIcons_callparticipantincoming from './icons-call-participant-incoming' +import processedIcons_callparticipantfailed from './icons-call-participant-failed' +import processedIcons_callparticipantending from './icons-call-participant-ending' +import processedIcons_callparticipantconnectingline from './icons-call-participant-connecting-line' +import processedIcons_callparticipantconnecting from './icons-call-participant-connecting' +import processedIcons_callparticipantconnected from './icons-call-participant-connected' +import processedIcons_callmissedlinefilled from './icons-call-missed-line-filled' +import processedIcons_callmissedline from './icons-call-missed-line' +import processedIcons_callmissed from './icons-call-missed' +import processedIcons_callmicrophoneunmuting from './icons-call-microphone-unmuting' +import processedIcons_callmicrophoneofffilled from './icons-call-microphone-off-filled' +import processedIcons_callmeetupline from './icons-call-meetup-line' +import processedIcons_callmeetupfilled from './icons-call-meetup-filled' +import processedIcons_callincomingvideo from './icons-call-incoming-video' +import processedIcons_callhold from './icons-call-hold' +import processedIcons_callend from './icons-call-end' +import processedIcons_calldialpad from './icons-call-dialpad' +import processedIcons_callcontrolstoppresentingnew from './icons-call-control-stop-presenting-new' +import processedIcons_callcontrolpresentnew from './icons-call-control-present-new' +import processedIcons_callblocked from './icons-call-blocked' +import processedIcons_callaudio from './icons-call-audio' +import processedIcons_callalert from './icons-call-alert' +import processedIcons_calladmitall from './icons-call-admit-all' +import processedIcons_call from './icons-call' +import processedIcons_calendar from './icons-calendar' +import processedIcons_bullets from './icons-bullets' +import processedIcons_broadcastviewright from './icons-broadcast-view-right' +import processedIcons_broadcastviewleft from './icons-broadcast-view-left' +import processedIcons_broadcastviewfullscreen from './icons-broadcast-view-fullscreen' +import processedIcons_bot from './icons-bot' +import processedIcons_bookmark from './icons-bookmark' +import processedIcons_bold from './icons-bold' +import processedIcons_blurbackground from './icons-blur-background' +import processedIcons_block from './icons-block' +import processedIcons_bellmute from './icons-bell-mute' +import processedIcons_bell from './icons-bell' +import processedIcons_badgeadd from './icons-badge-add' +import processedIcons_badge from './icons-badge' +import processedIcons_backspace from './icons-backspace' +import processedIcons_audio from './icons-audio' +import processedIcons_attachment from './icons-attachment' +import processedIcons_assignments from './icons-assignments' +import processedIcons_arrowupsmall from './icons-arrow-up-small' +import processedIcons_arrowup from './icons-arrow-up' +import processedIcons_arrowright from './icons-arrow-right' +import processedIcons_arrowleft from './icons-arrow-left' +import processedIcons_arrowdown from './icons-arrow-down' +import processedIcons_archive from './icons-archive' +import processedIcons_apps from './icons-apps' +import processedIcons_analytics from './icons-analytics' +import processedIcons_addparticipant from './icons-add-participant' +import processedIcons_add from './icons-add' +import processedIcons_accept from './icons-accept' + +export default { + // EXPORTS + processedIcons_zoomout, + processedIcons_zoomin, + processedIcons_zip, + processedIcons_youtube, + processedIcons_yammer, + processedIcons_whiteboard, + processedIcons_website, + processedIcons_waffle, + processedIcons_voicemail, + processedIcons_videooff, + processedIcons_video, + processedIcons_urgent, + processedIcons_unfollowchannel, + processedIcons_underline, + processedIcons_txt, + processedIcons_triangleupsmall, + processedIcons_trianglerightsmall, + processedIcons_triangledownsmall, + processedIcons_trianglediagonalrightsmall, + processedIcons_trending, + processedIcons_trashcan, + processedIcons_translation, + processedIcons_timezonenight, + processedIcons_timezoneday, + processedIcons_tentative, + processedIcons_teams, + processedIcons_teamdiscover, + processedIcons_teamcreate, + processedIcons_tabledelete, + processedIcons_tableadd, + processedIcons_table, + processedIcons_tabbadge, + processedIcons_sticker, + processedIcons_statusyo, + processedIcons_starred, + processedIcons_star, + processedIcons_speakerslashed, + processedIcons_speakeroff, + processedIcons_sketch, + processedIcons_shareobject, + processedIcons_share, + processedIcons_sfbviewbox32, + processedIcons_settings, + processedIcons_send, + processedIcons_search, + processedIcons_screenzoomout, + processedIcons_screenzoomin, + processedIcons_roster, + processedIcons_retry, + processedIcons_resetzoom, + processedIcons_reply, + processedIcons_refresh, + processedIcons_redbang, + processedIcons_recurrence, + processedIcons_recents, + processedIcons_recent, + processedIcons_readaloud, + processedIcons_quote, + processedIcons_quickresponse, + processedIcons_qna, + processedIcons_promoted, + processedIcons_pluscircled, + processedIcons_playsoundmute, + processedIcons_playpause, + processedIcons_playforward, + processedIcons_play, + processedIcons_pin, + processedIcons_person, + processedIcons_pdf, + processedIcons_pcaudiostop, + processedIcons_pcaudio, + processedIcons_patharrow, + processedIcons_paste, + processedIcons_participantremove, + processedIcons_outline, + processedIcons_orgwide, + processedIcons_org, + processedIcons_openoutside, + processedIcons_opennewwindowfilled, + processedIcons_opennewwindow, + processedIcons_openinsidesmall, + processedIcons_openinside, + processedIcons_openexternallinkoff, + processedIcons_oof, + processedIcons_onenotesection, + processedIcons_numberlist, + processedIcons_notificationoff, + processedIcons_notes, + processedIcons_nochat, + processedIcons_newtab, + processedIcons_newcontactgroup, + processedIcons_myactivity, + processedIcons_mutechat, + processedIcons_msftxlonline, + processedIcons_msftxl, + processedIcons_msftwordonline, + processedIcons_msftword, + processedIcons_msftvisio, + processedIcons_msftteams, + processedIcons_msftstream, + processedIcons_msftspdoclibrary, + processedIcons_msftsharepoint, + processedIcons_msftpptonline, + processedIcons_msftppt, + processedIcons_msftpowerbi, + processedIcons_msftplanner, + processedIcons_msftoutlookcolored, + processedIcons_msftoutlook, + processedIcons_msftonenoteonline, + processedIcons_msftonenote, + processedIcons_msftonedrive, + processedIcons_msftoffice, + processedIcons_msftexchange, + processedIcons_msftdelve, + processedIcons_msftcanvas, + processedIcons_move, + processedIcons_mov, + processedIcons_more, + processedIcons_micoff, + processedIcons_mic, + processedIcons_menulight, + processedIcons_menu, + processedIcons_mention, + processedIcons_megaphone, + processedIcons_meetingnotes, + processedIcons_meetingnew, + processedIcons_mediaoff, + processedIcons_markasunread, + processedIcons_markasread, + processedIcons_manageteams, + processedIcons_lock18, + processedIcons_lock14, + processedIcons_lock, + processedIcons_locationoff, + processedIcons_location, + processedIcons_link, + processedIcons_liked, + processedIcons_like, + processedIcons_leave, + processedIcons_kollective, + processedIcons_keyboard, + processedIcons_italic, + processedIcons_invitetentative, + processedIcons_inviteperson, + processedIcons_invitenotresponded, + processedIcons_invitedeclined, + processedIcons_invitecancelled, + processedIcons_inviteaccepted, + processedIcons_inputvalid, + processedIcons_inputinvalid, + processedIcons_info, + processedIcons_inferred, + processedIcons_indicator, + processedIcons_image, + processedIcons_home, + processedIcons_hive, + processedIcons_highlight, + processedIcons_helparticle, + processedIcons_headset, + processedIcons_groups, + processedIcons_giphy, + processedIcons_gif, + processedIcons_gettingstarted, + processedIcons_gallery, + processedIcons_fullscreen, + processedIcons_format, + processedIcons_fontsize, + processedIcons_fontcolor, + processedIcons_followchannel, + processedIcons_folderupload, + processedIcons_foldernew, + processedIcons_folderdownload, + processedIcons_folder, + processedIcons_filter, + processedIcons_filesuploadsmall, + processedIcons_filesupload, + processedIcons_filessound, + processedIcons_filesphotoshop, + processedIcons_filesmissing, + processedIcons_fileslink, + processedIcons_filesindesign, + processedIcons_filesillustrator, + processedIcons_filesflash, + processedIcons_fileserrorfull, + processedIcons_filesdocument, + processedIcons_filesaftereffects, + processedIcons_files, + processedIcons_feedback, + processedIcons_faq, + processedIcons_eyeslash, + processedIcons_eyefriendlier, + processedIcons_eye, + processedIcons_expand, + processedIcons_error, + processedIcons_emoji, + processedIcons_email, + processedIcons_edit, + processedIcons_dropdown, + processedIcons_downloaded, + processedIcons_download, + processedIcons_document, + processedIcons_desktop, + processedIcons_cortana, + processedIcons_copy, + processedIcons_contactlist, + processedIcons_connectorbadge, + processedIcons_composeextmenuitem, + processedIcons_composeextensionunpin, + processedIcons_composeextensionpin, + processedIcons_compose, + processedIcons_collapse, + processedIcons_codesnippet, + processedIcons_code, + processedIcons_closedcaption, + processedIcons_close, + processedIcons_chromeunmaximize, + processedIcons_chromeminimize, + processedIcons_chromemaximize, + processedIcons_chevronright, + processedIcons_chevronmedright, + processedIcons_chevronmedleft, + processedIcons_chevronleft, + processedIcons_chevrondown, + processedIcons_checkboxunselected, + processedIcons_checkboxselected, + processedIcons_chat, + processedIcons_channelicon, + processedIcons_changename, + processedIcons_canvasaddpage, + processedIcons_callvideolineoff, + processedIcons_callvideoline, + processedIcons_callvideofilled, + processedIcons_callvideo, + processedIcons_calltransfernotification, + processedIcons_calltransfer, + processedIcons_callswitchcamera, + processedIcons_callrecording, + processedIcons_callpstnfull, + processedIcons_callpstn, + processedIcons_callparticipantonhold, + processedIcons_callparticipantincomingline, + processedIcons_callparticipantincoming, + processedIcons_callparticipantfailed, + processedIcons_callparticipantending, + processedIcons_callparticipantconnectingline, + processedIcons_callparticipantconnecting, + processedIcons_callparticipantconnected, + processedIcons_callmissedlinefilled, + processedIcons_callmissedline, + processedIcons_callmissed, + processedIcons_callmicrophoneunmuting, + processedIcons_callmicrophoneofffilled, + processedIcons_callmeetupline, + processedIcons_callmeetupfilled, + processedIcons_callincomingvideo, + processedIcons_callhold, + processedIcons_callend, + processedIcons_calldialpad, + processedIcons_callcontrolstoppresentingnew, + processedIcons_callcontrolpresentnew, + processedIcons_callblocked, + processedIcons_callaudio, + processedIcons_callalert, + processedIcons_calladmitall, + processedIcons_call, + processedIcons_calendar, + processedIcons_bullets, + processedIcons_broadcastviewright, + processedIcons_broadcastviewleft, + processedIcons_broadcastviewfullscreen, + processedIcons_bot, + processedIcons_bookmark, + processedIcons_bold, + processedIcons_blurbackground, + processedIcons_block, + processedIcons_bellmute, + processedIcons_bell, + processedIcons_badgeadd, + processedIcons_badge, + processedIcons_backspace, + processedIcons_audio, + processedIcons_attachment, + processedIcons_assignments, + processedIcons_arrowupsmall, + processedIcons_arrowup, + processedIcons_arrowright, + processedIcons_arrowleft, + processedIcons_arrowdown, + processedIcons_archive, + processedIcons_apps, + processedIcons_analytics, + processedIcons_addparticipant, + processedIcons_add, + processedIcons_accept, +} as { [iconName: string]: TeamsSvgIconSpec } diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/index.ts b/src/themes/teams/components/Icon/svg/ProcessedIcons/index.ts new file mode 100644 index 0000000000..48cc132ecf --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/index.ts @@ -0,0 +1,595 @@ +import { TeamsSvgIconSpec } from '../types' + +// IMPORTS +import processedIcons_zoomout from './icons-zoom-out' +import processedIcons_zoomin from './icons-zoom-in' +import processedIcons_zip from './icons-zip' +import processedIcons_youtube from './icons-youtube' +import processedIcons_yammer from './icons-yammer' +import processedIcons_whiteboard from './icons-whiteboard' +import processedIcons_website from './icons-website' +import processedIcons_waffle from './icons-waffle' +import processedIcons_voicemail from './icons-voicemail' +import processedIcons_videooff from './icons-video-off' +import processedIcons_video from './icons-video' +import processedIcons_urgent from './icons-urgent' +import processedIcons_unfollowchannel from './icons-unfollow-channel' +import processedIcons_underline from './icons-underline' +import processedIcons_txt from './icons-txt' +import processedIcons_triangleupsmall from './icons-triangle-up-small' +import processedIcons_trianglerightsmall from './icons-triangle-right-small' +import processedIcons_triangledownsmall from './icons-triangle-down-small' +import processedIcons_trianglediagonalrightsmall from './icons-triangle-diagonal-right-small' +import processedIcons_trending from './icons-trending' +import processedIcons_trashcan from './icons-trash-can' +import processedIcons_translation from './icons-translation' +import processedIcons_timezonenight from './icons-time-zone-night' +import processedIcons_timezoneday from './icons-time-zone-day' +import processedIcons_tentative from './icons-tentative' +import processedIcons_teams from './icons-teams' +import processedIcons_teamdiscover from './icons-team-discover' +import processedIcons_teamcreate from './icons-team-create' +import processedIcons_tabledelete from './icons-table-delete' +import processedIcons_tableadd from './icons-table-add' +import processedIcons_table from './icons-table' +import processedIcons_tabbadge from './icons-tab-badge' +import processedIcons_sticker from './icons-sticker' +import processedIcons_statusyo from './icons-status-yo' +import processedIcons_starred from './icons-starred' +import processedIcons_star from './icons-star' +import processedIcons_speakerslashed from './icons-speaker-slashed' +import processedIcons_speakeroff from './icons-speaker-off' +import processedIcons_sketch from './icons-sketch' +import processedIcons_shareobject from './icons-share-object' +import processedIcons_share from './icons-share' +import processedIcons_sfbviewbox32 from './icons-sfb-viewbox-32' +import processedIcons_settings from './icons-settings' +import processedIcons_send from './icons-send' +import processedIcons_search from './icons-search' +import processedIcons_screenzoomout from './icons-screen-zoom-out' +import processedIcons_screenzoomin from './icons-screen-zoom-in' +import processedIcons_roster from './icons-roster' +import processedIcons_retry from './icons-retry' +import processedIcons_resetzoom from './icons-reset-zoom' +import processedIcons_reply from './icons-reply' +import processedIcons_refresh from './icons-refresh' +import processedIcons_redbang from './icons-redbang' +import processedIcons_recurrence from './icons-recurrence' +import processedIcons_recents from './icons-recents' +import processedIcons_recent from './icons-recent' +import processedIcons_readaloud from './icons-read-aloud' +import processedIcons_quote from './icons-quote' +import processedIcons_quickresponse from './icons-quick-response' +import processedIcons_qna from './icons-qna' +import processedIcons_promoted from './icons-promoted' +import processedIcons_pluscircled from './icons-plus-circled' +import processedIcons_playsoundmute from './icons-play-sound-mute' +import processedIcons_playpause from './icons-play-pause' +import processedIcons_playforward from './icons-play-forward' +import processedIcons_play from './icons-play' +import processedIcons_pin from './icons-pin' +import processedIcons_person from './icons-person' +import processedIcons_pdf from './icons-pdf' +import processedIcons_pcaudiostop from './icons-pc-audio-stop' +import processedIcons_pcaudio from './icons-pc-audio' +import processedIcons_patharrow from './icons-patharrow' +import processedIcons_paste from './icons-paste' +import processedIcons_participantremove from './icons-participant-remove' +import processedIcons_outline from './icons-outline' +import processedIcons_orgwide from './icons-org-wide' +import processedIcons_org from './icons-org' +import processedIcons_openoutside from './icons-open-outside' +import processedIcons_opennewwindowfilled from './icons-open-new-window-filled' +import processedIcons_opennewwindow from './icons-open-new-window' +import processedIcons_openinsidesmall from './icons-open-inside-small' +import processedIcons_openinside from './icons-open-inside' +import processedIcons_openexternallinkoff from './icons-open-external-link-off' +import processedIcons_oof from './icons-oof' +import processedIcons_onenotesection from './icons-onenote-section' +import processedIcons_numberlist from './icons-number-list' +import processedIcons_notificationoff from './icons-notification-off' +import processedIcons_notes from './icons-notes' +import processedIcons_nochat from './icons-no-chat' +import processedIcons_newtab from './icons-newtab' +import processedIcons_newcontactgroup from './icons-new-contactgroup' +import processedIcons_myactivity from './icons-my-activity' +import processedIcons_mutechat from './icons-mutechat' +import processedIcons_msftxlonline from './icons-msft-xl-online' +import processedIcons_msftxl from './icons-msft-xl' +import processedIcons_msftwordonline from './icons-msft-word-online' +import processedIcons_msftword from './icons-msft-word' +import processedIcons_msftvisio from './icons-msft-visio' +import processedIcons_msftteams from './icons-msft-teams' +import processedIcons_msftstream from './icons-msft-stream' +import processedIcons_msftspdoclibrary from './icons-msft-sp-doc-library' +import processedIcons_msftsharepoint from './icons-msft-sharepoint' +import processedIcons_msftpptonline from './icons-msft-ppt-online' +import processedIcons_msftppt from './icons-msft-ppt' +import processedIcons_msftpowerbi from './icons-msft-powerbi' +import processedIcons_msftplanner from './icons-msft-planner' +import processedIcons_msftoutlookcolored from './icons-msft-outlook-colored' +import processedIcons_msftoutlook from './icons-msft-outlook' +import processedIcons_msftonenoteonline from './icons-msft-onenote-online' +import processedIcons_msftonenote from './icons-msft-onenote' +import processedIcons_msftonedrive from './icons-msft-onedrive' +import processedIcons_msftoffice from './icons-msft-office' +import processedIcons_msftexchange from './icons-msft-exchange' +import processedIcons_msftdelve from './icons-msft-delve' +import processedIcons_msftcanvas from './icons-msft-canvas' +import processedIcons_move from './icons-move' +import processedIcons_mov from './icons-mov' +import processedIcons_more from './icons-more' +import processedIcons_micoff from './icons-mic-off' +import processedIcons_mic from './icons-mic' +import processedIcons_menulight from './icons-menu-light' +import processedIcons_menu from './icons-menu' +import processedIcons_mention from './icons-mention' +import processedIcons_megaphone from './icons-megaphone' +import processedIcons_meetingnotes from './icons-meeting-notes' +import processedIcons_meetingnew from './icons-meeting-new' +import processedIcons_mediaoff from './icons-media-off' +import processedIcons_markasunread from './icons-mark-as-unread' +import processedIcons_markasread from './icons-mark-as-read' +import processedIcons_manageteams from './icons-manage-teams' +import processedIcons_lock18 from './icons-lock-18' +import processedIcons_lock14 from './icons-lock-14' +import processedIcons_lock from './icons-lock' +import processedIcons_locationoff from './icons-location-off' +import processedIcons_location from './icons-location' +import processedIcons_link from './icons-link' +import processedIcons_liked from './icons-liked' +import processedIcons_like from './icons-like' +import processedIcons_leave from './icons-leave' +import processedIcons_kollective from './icons-kollective' +import processedIcons_keyboard from './icons-keyboard' +import processedIcons_italic from './icons-italic' +import processedIcons_invitetentative from './icons-invite-tentative' +import processedIcons_inviteperson from './icons-invite-person' +import processedIcons_invitenotresponded from './icons-invite-not-responded' +import processedIcons_invitedeclined from './icons-invite-declined' +import processedIcons_invitecancelled from './icons-invite-cancelled' +import processedIcons_inviteaccepted from './icons-invite-accepted' +import processedIcons_inputvalid from './icons-input-valid' +import processedIcons_inputinvalid from './icons-input-invalid' +import processedIcons_info from './icons-info' +import processedIcons_inferred from './icons-inferred' +import processedIcons_indicator from './icons-indicator' +import processedIcons_image from './icons-image' +import processedIcons_home from './icons-home' +import processedIcons_hive from './icons-hive' +import processedIcons_highlight from './icons-highlight' +import processedIcons_helparticle from './icons-helparticle' +import processedIcons_headset from './icons-headset' +import processedIcons_groups from './icons-groups' +import processedIcons_giphy from './icons-giphy' +import processedIcons_gif from './icons-gif' +import processedIcons_gettingstarted from './icons-gettingstarted' +import processedIcons_gallery from './icons-gallery' +import processedIcons_fullscreen from './icons-fullscreen' +import processedIcons_format from './icons-format' +import processedIcons_fontsize from './icons-font-size' +import processedIcons_fontcolor from './icons-font-color' +import processedIcons_followchannel from './icons-follow-channel' +import processedIcons_folderupload from './icons-folder-upload' +import processedIcons_foldernew from './icons-folder-new' +import processedIcons_folderdownload from './icons-folder-download' +import processedIcons_folder from './icons-folder' +import processedIcons_filter from './icons-filter' +import processedIcons_filesuploadsmall from './icons-files-upload-small' +import processedIcons_filesupload from './icons-files-upload' +import processedIcons_filessound from './icons-files-sound' +import processedIcons_filesphotoshop from './icons-files-photoshop' +import processedIcons_filesmissing from './icons-files-missing' +import processedIcons_fileslink from './icons-files-link' +import processedIcons_filesindesign from './icons-files-indesign' +import processedIcons_filesillustrator from './icons-files-illustrator' +import processedIcons_filesflash from './icons-files-flash' +import processedIcons_fileserrorfull from './icons-files-error-full' +import processedIcons_filesdocument from './icons-files-document' +import processedIcons_filesaftereffects from './icons-files-aftereffects' +import processedIcons_files from './icons-files' +import processedIcons_feedback from './icons-feedback' +import processedIcons_faq from './icons-faq' +import processedIcons_eyeslash from './icons-eye-slash' +import processedIcons_eyefriendlier from './icons-eye-friendlier' +import processedIcons_eye from './icons-eye' +import processedIcons_expand from './icons-expand' +import processedIcons_error from './icons-error' +import processedIcons_emoji from './icons-emoji' +import processedIcons_email from './icons-email' +import processedIcons_edit from './icons-edit' +import processedIcons_dropdown from './icons-dropdown' +import processedIcons_downloaded from './icons-downloaded' +import processedIcons_download from './icons-download' +import processedIcons_document from './icons-document' +import processedIcons_desktop from './icons-desktop' +import processedIcons_cortana from './icons-cortana' +import processedIcons_copy from './icons-copy' +import processedIcons_contactlist from './icons-contact-list' +import processedIcons_connectorbadge from './icons-connector-badge' +import processedIcons_composeextmenuitem from './icons-compose-ext-menu-item' +import processedIcons_composeextensionunpin from './icons-compose-extension-unpin' +import processedIcons_composeextensionpin from './icons-compose-extension-pin' +import processedIcons_compose from './icons-compose' +import processedIcons_collapse from './icons-collapse' +import processedIcons_codesnippet from './icons-codesnippet' +import processedIcons_code from './icons-code' +import processedIcons_closedcaption from './icons-closed-caption' +import processedIcons_close from './icons-close' +import processedIcons_chromeunmaximize from './icons-chrome-unmaximize' +import processedIcons_chromeminimize from './icons-chrome-minimize' +import processedIcons_chromemaximize from './icons-chrome-maximize' +import processedIcons_chevronright from './icons-chevron-right' +import processedIcons_chevronmedright from './icons-chevronmed-right' +import processedIcons_chevronmedleft from './icons-chevronmed-left' +import processedIcons_chevronleft from './icons-chevron-left' +import processedIcons_chevrondown from './icons-chevron-down' +import processedIcons_checkboxunselected from './icons-checkbox-unselected' +import processedIcons_checkboxselected from './icons-checkbox-selected' +import processedIcons_chat from './icons-chat' +import processedIcons_channelicon from './icons-channel-icon' +import processedIcons_changename from './icons-changename' +import processedIcons_canvasaddpage from './icons-canvas-addpage' +import processedIcons_callvideolineoff from './icons-call-video-line-off' +import processedIcons_callvideoline from './icons-call-video-line' +import processedIcons_callvideofilled from './icons-call-video-filled' +import processedIcons_callvideo from './icons-call-video' +import processedIcons_calltransfernotification from './icons-call-transfer-notification' +import processedIcons_calltransfer from './icons-call-transfer' +import processedIcons_callswitchcamera from './icons-call-switch-camera' +import processedIcons_callrecording from './icons-call-recording' +import processedIcons_callpstnfull from './icons-call-pstn-full' +import processedIcons_callpstn from './icons-call-pstn' +import processedIcons_callparticipantonhold from './icons-call-participant-onhold' +import processedIcons_callparticipantincomingline from './icons-call-participant-incoming-line' +import processedIcons_callparticipantincoming from './icons-call-participant-incoming' +import processedIcons_callparticipantfailed from './icons-call-participant-failed' +import processedIcons_callparticipantending from './icons-call-participant-ending' +import processedIcons_callparticipantconnectingline from './icons-call-participant-connecting-line' +import processedIcons_callparticipantconnecting from './icons-call-participant-connecting' +import processedIcons_callparticipantconnected from './icons-call-participant-connected' +import processedIcons_callmissedlinefilled from './icons-call-missed-line-filled' +import processedIcons_callmissedline from './icons-call-missed-line' +import processedIcons_callmissed from './icons-call-missed' +import processedIcons_callmicrophoneunmuting from './icons-call-microphone-unmuting' +import processedIcons_callmicrophoneofffilled from './icons-call-microphone-off-filled' +import processedIcons_callmeetupline from './icons-call-meetup-line' +import processedIcons_callmeetupfilled from './icons-call-meetup-filled' +import processedIcons_callincomingvideo from './icons-call-incoming-video' +import processedIcons_callhold from './icons-call-hold' +import processedIcons_callend from './icons-call-end' +import processedIcons_calldialpad from './icons-call-dialpad' +import processedIcons_callcontrolstoppresentingnew from './icons-call-control-stop-presenting-new' +import processedIcons_callcontrolpresentnew from './icons-call-control-present-new' +import processedIcons_callblocked from './icons-call-blocked' +import processedIcons_callaudio from './icons-call-audio' +import processedIcons_callalert from './icons-call-alert' +import processedIcons_calladmitall from './icons-call-admit-all' +import processedIcons_call from './icons-call' +import processedIcons_calendar from './icons-calendar' +import processedIcons_bullets from './icons-bullets' +import processedIcons_broadcastviewright from './icons-broadcast-view-right' +import processedIcons_broadcastviewleft from './icons-broadcast-view-left' +import processedIcons_broadcastviewfullscreen from './icons-broadcast-view-fullscreen' +import processedIcons_bot from './icons-bot' +import processedIcons_bookmark from './icons-bookmark' +import processedIcons_bold from './icons-bold' +import processedIcons_blurbackground from './icons-blur-background' +import processedIcons_block from './icons-block' +import processedIcons_bellmute from './icons-bell-mute' +import processedIcons_bell from './icons-bell' +import processedIcons_badgeadd from './icons-badge-add' +import processedIcons_badge from './icons-badge' +import processedIcons_backspace from './icons-backspace' +import processedIcons_audio from './icons-audio' +import processedIcons_attachment from './icons-attachment' +import processedIcons_assignments from './icons-assignments' +import processedIcons_arrowupsmall from './icons-arrow-up-small' +import processedIcons_arrowup from './icons-arrow-up' +import processedIcons_arrowright from './icons-arrow-right' +import processedIcons_arrowleft from './icons-arrow-left' +import processedIcons_arrowdown from './icons-arrow-down' +import processedIcons_archive from './icons-archive' +import processedIcons_apps from './icons-apps' +import processedIcons_analytics from './icons-analytics' +import processedIcons_addparticipant from './icons-add-participant' +import processedIcons_add from './icons-add' +import processedIcons_accept from './icons-accept' + +export default { + // EXPORTS + processedIcons_zoomout, + processedIcons_zoomin, + processedIcons_zip, + processedIcons_youtube, + processedIcons_yammer, + processedIcons_whiteboard, + processedIcons_website, + processedIcons_waffle, + processedIcons_voicemail, + processedIcons_videooff, + processedIcons_video, + processedIcons_urgent, + processedIcons_unfollowchannel, + processedIcons_underline, + processedIcons_txt, + processedIcons_triangleupsmall, + processedIcons_trianglerightsmall, + processedIcons_triangledownsmall, + processedIcons_trianglediagonalrightsmall, + processedIcons_trending, + processedIcons_trashcan, + processedIcons_translation, + processedIcons_timezonenight, + processedIcons_timezoneday, + processedIcons_tentative, + processedIcons_teams, + processedIcons_teamdiscover, + processedIcons_teamcreate, + processedIcons_tabledelete, + processedIcons_tableadd, + processedIcons_table, + processedIcons_tabbadge, + processedIcons_sticker, + processedIcons_statusyo, + processedIcons_starred, + processedIcons_star, + processedIcons_speakerslashed, + processedIcons_speakeroff, + processedIcons_sketch, + processedIcons_shareobject, + processedIcons_share, + processedIcons_sfbviewbox32, + processedIcons_settings, + processedIcons_send, + processedIcons_search, + processedIcons_screenzoomout, + processedIcons_screenzoomin, + processedIcons_roster, + processedIcons_retry, + processedIcons_resetzoom, + processedIcons_reply, + processedIcons_refresh, + processedIcons_redbang, + processedIcons_recurrence, + processedIcons_recents, + processedIcons_recent, + processedIcons_readaloud, + processedIcons_quote, + processedIcons_quickresponse, + processedIcons_qna, + processedIcons_promoted, + processedIcons_pluscircled, + processedIcons_playsoundmute, + processedIcons_playpause, + processedIcons_playforward, + processedIcons_play, + processedIcons_pin, + processedIcons_person, + processedIcons_pdf, + processedIcons_pcaudiostop, + processedIcons_pcaudio, + processedIcons_patharrow, + processedIcons_paste, + processedIcons_participantremove, + processedIcons_outline, + processedIcons_orgwide, + processedIcons_org, + processedIcons_openoutside, + processedIcons_opennewwindowfilled, + processedIcons_opennewwindow, + processedIcons_openinsidesmall, + processedIcons_openinside, + processedIcons_openexternallinkoff, + processedIcons_oof, + processedIcons_onenotesection, + processedIcons_numberlist, + processedIcons_notificationoff, + processedIcons_notes, + processedIcons_nochat, + processedIcons_newtab, + processedIcons_newcontactgroup, + processedIcons_myactivity, + processedIcons_mutechat, + processedIcons_msftxlonline, + processedIcons_msftxl, + processedIcons_msftwordonline, + processedIcons_msftword, + processedIcons_msftvisio, + processedIcons_msftteams, + processedIcons_msftstream, + processedIcons_msftspdoclibrary, + processedIcons_msftsharepoint, + processedIcons_msftpptonline, + processedIcons_msftppt, + processedIcons_msftpowerbi, + processedIcons_msftplanner, + processedIcons_msftoutlookcolored, + processedIcons_msftoutlook, + processedIcons_msftonenoteonline, + processedIcons_msftonenote, + processedIcons_msftonedrive, + processedIcons_msftoffice, + processedIcons_msftexchange, + processedIcons_msftdelve, + processedIcons_msftcanvas, + processedIcons_move, + processedIcons_mov, + processedIcons_more, + processedIcons_micoff, + processedIcons_mic, + processedIcons_menulight, + processedIcons_menu, + processedIcons_mention, + processedIcons_megaphone, + processedIcons_meetingnotes, + processedIcons_meetingnew, + processedIcons_mediaoff, + processedIcons_markasunread, + processedIcons_markasread, + processedIcons_manageteams, + processedIcons_lock18, + processedIcons_lock14, + processedIcons_lock, + processedIcons_locationoff, + processedIcons_location, + processedIcons_link, + processedIcons_liked, + processedIcons_like, + processedIcons_leave, + processedIcons_kollective, + processedIcons_keyboard, + processedIcons_italic, + processedIcons_invitetentative, + processedIcons_inviteperson, + processedIcons_invitenotresponded, + processedIcons_invitedeclined, + processedIcons_invitecancelled, + processedIcons_inviteaccepted, + processedIcons_inputvalid, + processedIcons_inputinvalid, + processedIcons_info, + processedIcons_inferred, + processedIcons_indicator, + processedIcons_image, + processedIcons_home, + processedIcons_hive, + processedIcons_highlight, + processedIcons_helparticle, + processedIcons_headset, + processedIcons_groups, + processedIcons_giphy, + processedIcons_gif, + processedIcons_gettingstarted, + processedIcons_gallery, + processedIcons_fullscreen, + processedIcons_format, + processedIcons_fontsize, + processedIcons_fontcolor, + processedIcons_followchannel, + processedIcons_folderupload, + processedIcons_foldernew, + processedIcons_folderdownload, + processedIcons_folder, + processedIcons_filter, + processedIcons_filesuploadsmall, + processedIcons_filesupload, + processedIcons_filessound, + processedIcons_filesphotoshop, + processedIcons_filesmissing, + processedIcons_fileslink, + processedIcons_filesindesign, + processedIcons_filesillustrator, + processedIcons_filesflash, + processedIcons_fileserrorfull, + processedIcons_filesdocument, + processedIcons_filesaftereffects, + processedIcons_files, + processedIcons_feedback, + processedIcons_faq, + processedIcons_eyeslash, + processedIcons_eyefriendlier, + processedIcons_eye, + processedIcons_expand, + processedIcons_error, + processedIcons_emoji, + processedIcons_email, + processedIcons_edit, + processedIcons_dropdown, + processedIcons_downloaded, + processedIcons_download, + processedIcons_document, + processedIcons_desktop, + processedIcons_cortana, + processedIcons_copy, + processedIcons_contactlist, + processedIcons_connectorbadge, + processedIcons_composeextmenuitem, + processedIcons_composeextensionunpin, + processedIcons_composeextensionpin, + processedIcons_compose, + processedIcons_collapse, + processedIcons_codesnippet, + processedIcons_code, + processedIcons_closedcaption, + processedIcons_close, + processedIcons_chromeunmaximize, + processedIcons_chromeminimize, + processedIcons_chromemaximize, + processedIcons_chevronright, + processedIcons_chevronmedright, + processedIcons_chevronmedleft, + processedIcons_chevronleft, + processedIcons_chevrondown, + processedIcons_checkboxunselected, + processedIcons_checkboxselected, + processedIcons_chat, + processedIcons_channelicon, + processedIcons_changename, + processedIcons_canvasaddpage, + processedIcons_callvideolineoff, + processedIcons_callvideoline, + processedIcons_callvideofilled, + processedIcons_callvideo, + processedIcons_calltransfernotification, + processedIcons_calltransfer, + processedIcons_callswitchcamera, + processedIcons_callrecording, + processedIcons_callpstnfull, + processedIcons_callpstn, + processedIcons_callparticipantonhold, + processedIcons_callparticipantincomingline, + processedIcons_callparticipantincoming, + processedIcons_callparticipantfailed, + processedIcons_callparticipantending, + processedIcons_callparticipantconnectingline, + processedIcons_callparticipantconnecting, + processedIcons_callparticipantconnected, + processedIcons_callmissedlinefilled, + processedIcons_callmissedline, + processedIcons_callmissed, + processedIcons_callmicrophoneunmuting, + processedIcons_callmicrophoneofffilled, + processedIcons_callmeetupline, + processedIcons_callmeetupfilled, + processedIcons_callincomingvideo, + processedIcons_callhold, + processedIcons_callend, + processedIcons_calldialpad, + processedIcons_callcontrolstoppresentingnew, + processedIcons_callcontrolpresentnew, + processedIcons_callblocked, + processedIcons_callaudio, + processedIcons_callalert, + processedIcons_calladmitall, + processedIcons_call, + processedIcons_calendar, + processedIcons_bullets, + processedIcons_broadcastviewright, + processedIcons_broadcastviewleft, + processedIcons_broadcastviewfullscreen, + processedIcons_bot, + processedIcons_bookmark, + processedIcons_bold, + processedIcons_blurbackground, + processedIcons_block, + processedIcons_bellmute, + processedIcons_bell, + processedIcons_badgeadd, + processedIcons_badge, + processedIcons_backspace, + processedIcons_audio, + processedIcons_attachment, + processedIcons_assignments, + processedIcons_arrowupsmall, + processedIcons_arrowup, + processedIcons_arrowright, + processedIcons_arrowleft, + processedIcons_arrowdown, + processedIcons_archive, + processedIcons_apps, + processedIcons_analytics, + processedIcons_addparticipant, + processedIcons_add, + processedIcons_accept, +} as { [iconName: string]: TeamsSvgIconSpec } diff --git a/src/themes/teams/components/Icon/svg/ProcessedIcons/stardust-icons.sh b/src/themes/teams/components/Icon/svg/ProcessedIcons/stardust-icons.sh new file mode 100644 index 0000000000..39e54d8fc1 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/ProcessedIcons/stardust-icons.sh @@ -0,0 +1,67 @@ +# export template="import * as React from 'react'\nimport { TeamsSvgIconSpec } from '../types'\n\nexport default (\n SVG\n) as TeamsSvgIconSpec\n" +export template="import * as React from 'react'\nimport { TeamsSvgIconSpec } from '../types'\n\nexport default {\nicon:({classes}) => (\n SVG\n),\nstyles:{},\n} as TeamsSvgIconSpec" + +mkdir StardustSVGs +mkdir StardustSVGs/non-standard +mkdir OptimizedSVGs + +for svg in $(ls *.html); do + # CREATE NEW FILES FOR .svg AND .tsx VERSIONS + SvgFileName=${svg/\.html/.svg} + echo "New .svg file name will be: $SvgFileName" + TsxFileName=${svg/\.html/.tsx} + echo "New .tsx file name will be: $TsxFileName" + + # RUN SVG THROUGH SVGO TO OPTIMIZE + svgo $svg -o $SvgFileName --pretty --indent=2 --enable={removeXMLNS,removeDoctype,removeTitle,removeUnusedNS,removeUselessDefs,removeComments,removeEditorsNSData} + echo "SVGO just optimized the SVG and saved to $SvgFileName" + + # TURN SVG INTO STARDUST TSX FORMAT + echo -e "${template/SVG/$(cat $SvgFileName)}" > $TsxFileName; + echo "Created $TsxFileName for templatized new SVG" + + # REPLACE STANDARD VIEWBOX WITH NEW VIEWBOX + sed -i 's/viewBox=\"0 0 32 32\"/viewBox=\"8 8 16 16\"/g' $TsxFileName + echo "Replaced the viewBox for $TsxFileName" + + # REPLACE SVG CLASS WTIH CLASSNAME & REPLACE OTHER CLASSES NOT USED WITH '' + sed -i -E 's/()/\1 focusable=\"false\" \2/' $TsxFileName + fi + + # ADD ROLE IF NOT THERE + if grep "role=\"presentation\"" $TsxFileName; then + echo "Found role=presentation in $TsxFileName" + else + echo "No role=presentation found. Adding to $TsxFileName" + sed -i -E 's/()/\1 role=\"presentation\" \2/' $TsxFileName + fi + + # MOVE TSX FILE TO NEW FOLDER + if grep "viewBox=\"0 0 32 32\"" $SvgFileName; then + echo "found in $SvgFileName" + mv $TsxFileName ./StardustSVGs; + else + echo "not found in $SvgFileName" + mv $TsxFileName ./StardustSVGs/non-standard; + fi + + # MOVE SVG FILE TO NEW FOLDER + mv $SvgFileName ./OptimizedSVGs + echo "Moved $SvgFileName to OptimizedSVGs folder" +done diff --git a/src/themes/teams/components/Icon/svg/processedIndex.ts b/src/themes/teams/components/Icon/svg/processedIndex.ts new file mode 100644 index 0000000000..9e9dc86bbd --- /dev/null +++ b/src/themes/teams/components/Icon/svg/processedIndex.ts @@ -0,0 +1,4 @@ +import svgIconsAndStyles from './ProcessedIcons' +import { TeamsSvgIconSpec } from './types' + +export default svgIconsAndStyles as { [iconName: string]: TeamsSvgIconSpec } diff --git a/src/themes/teams/withProcessedIcons.ts b/src/themes/teams/withProcessedIcons.ts new file mode 100644 index 0000000000..39c284a84c --- /dev/null +++ b/src/themes/teams/withProcessedIcons.ts @@ -0,0 +1,25 @@ +import { ThemeInput, ThemeIconSpec, ThemeIcons, SvgIconSpec } from '../types' + +import { default as svgIconsAndStyles } from './components/Icon/svg/ProcessedIcons' +import { TeamsSvgIconSpec, SvgIconSpecWithStyles } from './components/Icon/svg/types' + +const declareSvg = (svgIcon: SvgIconSpec): ThemeIconSpec => ({ + isSvg: true, + icon: svgIcon, +}) + +const processedIcons: ThemeIcons = Object.keys(svgIconsAndStyles as { + [iconName: string]: TeamsSvgIconSpec +}).reduce((accIcons, iconName) => { + const iconAndMaybeStyles = svgIconsAndStyles[iconName] + + const icon: SvgIconSpec = (iconAndMaybeStyles as any).styles + ? (iconAndMaybeStyles as SvgIconSpecWithStyles).icon + : (iconAndMaybeStyles as SvgIconSpec) + + return { ...accIcons, ...{ [iconName]: declareSvg(icon) } } +}, {}) + +const theme: ThemeInput = { icons: processedIcons } + +export default theme