This repository was archived by the owner on Mar 4, 2020. It is now read-only.
File tree 4 files changed +16
-0
lines changed
src/themes/teams/components/Icon/svg
4 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
35
35
- ` Ref ` components uses ` forwardRef ` API by default @layershifter ([ #491 ] ( https://github.com/stardust-ui/react/pull/491 ) )
36
36
- Label Processed Teams icons moved to Stardust theme @kuzhelov ([ #574 ] ( https://github.com/stardust-ui/react/pull/574 ) )
37
37
- Add ` Dropdown ` component @silviuavram ([ #422 ] ( https://github.com/stardust-ui/react/pull/422 ) )
38
+ - Export ` call-recording ` SVG icon @Bugaa92 ([ #585 ] ( https://github.com/stardust-ui/react/pull/585 ) )
38
39
39
40
### Documentation
40
41
- Add ` prettier ` support throughout the docs @levithomason ([ #568 ] ( https://github.com/stardust-ui/react/pull/568 ) )
Original file line number Diff line number Diff line change @@ -9,4 +9,5 @@ export default {
9
9
</ svg >
10
10
) ,
11
11
styles : { } ,
12
+ exportedAs : 'call-recording' ,
12
13
} as TeamsProcessedSvgIconSpec
Original file line number Diff line number Diff line change
1
+ import * as React from 'react'
2
+ import { TeamsProcessedSvgIconSpec } from '../types'
3
+
4
+ export default {
5
+ icon : ( { classes } ) => (
6
+ < svg role = "presentation" focusable = "false" viewBox = "8 8 16 16" className = { classes . svg } >
7
+ < circle cx = "16" cy = "16" r = "4.6" />
8
+ < path d = "M16 8c-4.4 0-8 3.6-8 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm0 14.3c-3.5 0-6.3-2.8-6.3-6.3s2.8-6.3 6.3-6.3 6.3 2.8 6.3 6.3-2.8 6.3-6.3 6.3z" />
9
+ </ svg >
10
+ ) ,
11
+ styles : { } ,
12
+ } as TeamsProcessedSvgIconSpec
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ import call from './call'
9
9
import callControlPresentNew from './callControlPresentNew'
10
10
import callControlStopPresentingNew from './callControlStopPresentingNew'
11
11
import callEnd from './callEnd'
12
+ import callRecording from './callRecording'
12
13
import callVideo from './callVideo'
13
14
import callVideoOff from './callVideoOff'
14
15
import edit from './edit'
@@ -48,6 +49,7 @@ export default {
48
49
'call-video-off' : callVideoOff ,
49
50
'call-control-present-new' : callControlPresentNew ,
50
51
'call-control-stop-presenting-new' : callControlStopPresentingNew ,
52
+ 'call-recording' : callRecording ,
51
53
edit,
52
54
error,
53
55
format,
You can’t perform that action at this time.
0 commit comments