Skip to content

Commit 5ae9dc3

Browse files
feat: Save Outline Icon for QX Editor (#835)
* feat: added new icon * chore: versioning
1 parent cb1b83d commit 5ae9dc3

File tree

9 files changed

+11
-2
lines changed

9 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
### 6.3.4 (2022-09-19)
4+
5+
- [835](https://github.com/influxdata/clockface/pull/835): Added a SaveOutline Icon
6+
37
### 6.3.3 (2022-08-24)
48

59
- [831](https://github.com/influxdata/clockface/pull/831): Added a FolderOpen Icon

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@influxdata/clockface",
3-
"version": "6.3.3",
3+
"version": "6.3.4",
44
"license": "MIT",
55
"main": "dist/index.js",
66
"style": "dist/index.css",

src/Styles/Fonts/icomoon.eot

136 Bytes
Binary file not shown.

src/Styles/Fonts/icomoon.svg

Lines changed: 2 additions & 1 deletion
Loading

src/Styles/Fonts/icomoon.ttf

136 Bytes
Binary file not shown.

src/Styles/Fonts/icomoon.woff

136 Bytes
Binary file not shown.

src/Styles/Fonts/icomoon.woff2

40 Bytes
Binary file not shown.

src/Styles/icon.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,9 @@
247247
&.Save:before {
248248
content: '\e938';
249249
}
250+
&.SaveOutline:before {
251+
content: "\e951";
252+
}
250253
&.Search_New:before {
251254
content: '\e939';
252255
}

src/Types/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,7 @@ export enum IconFont {
344344
Refresh_New = 'Refresh_New',
345345
Remove_New = 'Remove_New',
346346
Save = 'Save',
347+
SaveOutline = 'SaveOutline',
347348
Search_New = 'Search_New',
348349
Share = 'Share',
349350
Shield = 'Shield',

0 commit comments

Comments
 (0)