Skip to content
This repository was archived by the owner on Mar 4, 2020. It is now read-only.

Commit 12d4472

Browse files
author
Alexandru Buliga
authored
[template] feat(icon): export call-recording icon (#585)
* feat(icon): export call-recording icon * changelog
1 parent 763f9f4 commit 12d4472

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
3535
- `Ref` components uses `forwardRef` API by default @layershifter ([#491](https://github.com/stardust-ui/react/pull/491))
3636
- Label Processed Teams icons moved to Stardust theme @kuzhelov ([#574](https://github.com/stardust-ui/react/pull/574))
3737
- 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))
3839

3940
### Documentation
4041
- Add `prettier` support throughout the docs @levithomason ([#568](https://github.com/stardust-ui/react/pull/568))

src/themes/teams/components/Icon/svg/ProcessedIcons/icons-call-recording.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ export default {
99
</svg>
1010
),
1111
styles: {},
12+
exportedAs: 'call-recording',
1213
} as TeamsProcessedSvgIconSpec
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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

src/themes/teams/components/Icon/svg/icons/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import call from './call'
99
import callControlPresentNew from './callControlPresentNew'
1010
import callControlStopPresentingNew from './callControlStopPresentingNew'
1111
import callEnd from './callEnd'
12+
import callRecording from './callRecording'
1213
import callVideo from './callVideo'
1314
import callVideoOff from './callVideoOff'
1415
import edit from './edit'
@@ -48,6 +49,7 @@ export default {
4849
'call-video-off': callVideoOff,
4950
'call-control-present-new': callControlPresentNew,
5051
'call-control-stop-presenting-new': callControlStopPresentingNew,
52+
'call-recording': callRecording,
5153
edit,
5254
error,
5355
format,

0 commit comments

Comments
 (0)