Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WRQ-24544: Add new icon create #1625

Merged
merged 1 commit into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

The following is a curated list of changes in the Enact sandstone module, newest changes on the top.

## [unreleased]

### Added

- `sandstone/Icon` supported icon list, adding new icon `create`

## [2.9.0-alpha.4] - 2024-06-05

### Changed
Expand Down
1 change: 1 addition & 0 deletions Icon/Icon.js
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,7 @@ const IconBase = kind({
* wifilock25g
* wifilock35g
* wifilock45g
* create
* ```
*
* @name iconList
Expand Down
3 changes: 2 additions & 1 deletion Icon/IconList.js
Original file line number Diff line number Diff line change
Expand Up @@ -217,5 +217,6 @@ export default {
wifilock15g : 0x0F0195, // wifilock1_5g
wifilock25g : 0x0F0196, // wifilock2_5g
wifilock35g : 0x0F0197, // wifilock3_5g
wifilock45g : 0x0F0198 // wifilock4_5g
wifilock45g : 0x0F0198, // wifilock4_5g
create : 0x0F0199 // create
};
Binary file modified fonts/Sandstone_Icons.ttf
Binary file not shown.
1 change: 1 addition & 0 deletions samples/sampler/stories/helper/icons.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ export const settingsIcons = [
'cameradis',
'changepassword',
'checker',
'create',
'demosync',
'dns',
'exclamation',
Expand Down
Loading