diff --git a/src/themes/teams/components/Icon/svg/icons/add.tsx b/src/themes/teams/components/Icon/svg/icons/add.tsx new file mode 100644 index 0000000000..9993b1f592 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/icons/add.tsx @@ -0,0 +1,34 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/icons/bookmark.tsx b/src/themes/teams/components/Icon/svg/icons/bookmark.tsx new file mode 100644 index 0000000000..dd5fe18a50 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/icons/bookmark.tsx @@ -0,0 +1,24 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: { + svg: ({ variables }) => { + return { + fill: variables.color, + } + }, + }, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/icons/bullets.tsx b/src/themes/teams/components/Icon/svg/icons/bullets.tsx new file mode 100644 index 0000000000..eeb33d5ca2 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/icons/bullets.tsx @@ -0,0 +1,35 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/icons/gallery.tsx b/src/themes/teams/components/Icon/svg/icons/gallery.tsx new file mode 100644 index 0000000000..8a122f22e0 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/icons/gallery.tsx @@ -0,0 +1,66 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + + + + + + + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec diff --git a/src/themes/teams/components/Icon/svg/icons/index.ts b/src/themes/teams/components/Icon/svg/icons/index.ts index 1aca8c2efc..6f65cfade7 100644 --- a/src/themes/teams/components/Icon/svg/icons/index.ts +++ b/src/themes/teams/components/Icon/svg/icons/index.ts @@ -1,5 +1,8 @@ import { TeamsSvgIconSpec } from '../types' +import add from './add' +import bookmark from './bookmark' +import bullets from './bullets' import call from './call' import callEnd from './callEnd' import callVideo from './callIncomingVideo' @@ -8,6 +11,8 @@ import callStartPresenting from './callControlPresentNew' import callStopPresenting from './callControlStopPresentingNew' import callMicrophone from './callMicrophone' import callMicrophoneOff from './callMicrophoneOff' +import gallery from './gallery' +import menu from './menu' import more from './more' import teamCreate from './teamCreate' import umbrella from './umbrella' @@ -19,6 +24,9 @@ import fontSize from './fontSize' import highlight from './highlight' export default { + add, + bookmark, + bullets, call, 'call-end': callEnd, 'call-video': callVideo, @@ -27,6 +35,8 @@ export default { 'call-stop-presenting': callStopPresenting, 'call-microphone': callMicrophone, 'call-microphone-off': callMicrophoneOff, + gallery, + menu, more, 'team-create': teamCreate, umbrella, diff --git a/src/themes/teams/components/Icon/svg/icons/menu.tsx b/src/themes/teams/components/Icon/svg/icons/menu.tsx new file mode 100644 index 0000000000..ffc99aeba3 --- /dev/null +++ b/src/themes/teams/components/Icon/svg/icons/menu.tsx @@ -0,0 +1,13 @@ +import * as React from 'react' +import { TeamsSvgIconSpec } from '../types' + +export default { + icon: ({ classes }) => ( + + + + + + ), + styles: {}, +} as TeamsSvgIconSpec