Skip to content

Commit cb1b83d

Browse files
feat: added the icon (#831)
* feat: added the icon * chore: versioning
1 parent 2d3284b commit cb1b83d

File tree

9 files changed

+10
-1
lines changed

9 files changed

+10
-1
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.3 (2022-08-24)
4+
5+
- [831](https://github.com/influxdata/clockface/pull/831): Added a FolderOpen Icon
6+
37
### 6.3.2 (2022-08-24)
48

59
- [830](https://github.com/influxdata/clockface/pull/830): Removed text color change and opacity when inputs are disabled. Accessbility on text readability change.

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.2",
3+
"version": "6.3.3",
44
"license": "MIT",
55
"main": "dist/index.js",
66
"style": "dist/index.css",

src/Styles/Fonts/icomoon.eot

148 Bytes
Binary file not shown.

src/Styles/Fonts/icomoon.svg

Lines changed: 1 addition & 0 deletions
Loading

src/Styles/Fonts/icomoon.ttf

148 Bytes
Binary file not shown.

src/Styles/Fonts/icomoon.woff

148 Bytes
Binary file not shown.

src/Styles/Fonts/icomoon.woff2

16 Bytes
Binary file not shown.

src/Styles/icon.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@
2828
// Better Font Rendering
2929
-webkit-font-smoothing: antialiased;
3030
-moz-osx-font-smoothing: grayscale;
31+
&.FolderOpen:before {
32+
content: "\e956";
33+
}
3134
&.Bill:before {
3235
content: '\e954';
3336
}

src/Types/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,7 @@ export enum IconFont {
321321
EyeClosed = 'EyeClosed',
322322
EyeOpen = 'EyeOpen',
323323
Flask = 'Flask',
324+
FolderOpen = 'FolderOpen',
324325
FunnelSolid = 'FunnelSolid',
325326
GraphLine_New = 'GraphLine_New',
326327
Group = 'Group',

0 commit comments

Comments
 (0)