-
-
Notifications
You must be signed in to change notification settings - Fork 924
feat(icons): added 'panel-dashed' variants + update tags on existing icons #3500
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
base: main
Are you sure you want to change the base?
Conversation
…te tags on existing panel icons
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🤖 ChatGPT Tags suggestions ✨
I've asked ChatGPT for some suggestions for tags.
icons/panel-all-sides-dashed.json
Outdated
"ericfennis", | ||
"irvineacosta" | ||
], | ||
"tags": [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggestions for the panel-all-sides-dashed
icon.
Try asking it your self if you want more suggestions. Open ChatGPT
Here are the suggestions:
"tags": [ | |
"tags": [ | |
"panel", | |
"sides", | |
"dashed", | |
"border", | |
"frame", | |
"outline", | |
"bordered", | |
"box", | |
"canvas", | |
"edge", |
@@ -2,13 +2,18 @@ | |||
"$schema": "../icon.schema.json", | |||
"contributors": [ | |||
"danielbayley", | |||
"ericfennis" | |||
"ericfennis", | |||
"irvineacosta" | |||
], | |||
"tags": [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggestions for the panel-bottom-dashed
icon.
Try asking it your self if you want more suggestions. Open ChatGPT
Here are the suggestions:
"tags": [ | |
"tags": [ | |
"panel", | |
"bottom", | |
"dashed", | |
"line", | |
"border", | |
"underline", | |
"style", | |
"separator", | |
"glitch", | |
"bordered", |
@@ -2,14 +2,19 @@ | |||
"$schema": "../icon.schema.json", | |||
"contributors": [ | |||
"danielbayley", | |||
"ericfennis" | |||
"ericfennis", | |||
"irvineacosta" | |||
], | |||
"tags": [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggestions for the panel-left-dashed
icon.
Try asking it your self if you want more suggestions. Open ChatGPT
Here are the suggestions:
"tags": [ | |
"tags": [ | |
"panel", | |
"left", | |
"dashed", | |
"border", | |
"outline", | |
"line", | |
"shape", | |
"graphic", | |
"design", |
"ericfennis", | ||
"irvineacosta" | ||
], | ||
"tags": [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggestions for the panel-left-right-dashed
icon.
Try asking it your self if you want more suggestions. Open ChatGPT
Here are the suggestions:
"tags": [ | |
"tags": [ | |
"panel", | |
"left", | |
"right", | |
"dashed", | |
"border", | |
"line", | |
"divider", | |
"separator", | |
"split", | |
"section", |
@@ -2,14 +2,19 @@ | |||
"$schema": "../icon.schema.json", | |||
"contributors": [ | |||
"danielbayley", | |||
"ericfennis" | |||
"ericfennis", | |||
"irvineacosta" | |||
], | |||
"tags": [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggestions for the panel-right-dashed
icon.
Try asking it your self if you want more suggestions. Open ChatGPT
Here are the suggestions:
"tags": [ | |
"tags": [ | |
"panel", | |
"right", | |
"dashed", | |
"border", | |
"outline", | |
"line", | |
"frame", | |
"edge", | |
"section", |
"ericfennis", | ||
"irvineacosta" | ||
], | ||
"tags": [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggestions for the panel-top-bottom-dashed
icon.
Try asking it your self if you want more suggestions. Open ChatGPT
Here are the suggestions:
"tags": [ | |
"tags": [ | |
"panel", | |
"top", | |
"bottom", | |
"dashed", |
@@ -2,13 +2,18 @@ | |||
"$schema": "../icon.schema.json", | |||
"contributors": [ | |||
"danielbayley", | |||
"ericfennis" | |||
"ericfennis", | |||
"irvineacosta" | |||
], | |||
"tags": [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggestions for the panel-top-dashed
icon.
Try asking it your self if you want more suggestions. Open ChatGPT
Here are the suggestions:
"tags": [ | |
"tags": [ | |
"panel", | |
"top", | |
"dashed", | |
"border", | |
"line", | |
"separator", | |
"style", | |
"graphic", | |
"design", | |
"outline", |
Added or changed iconsIcons as codeWorks for: const PanelLeftRightDashedIcon = createLucideIcon('PanelLeftRightDashed', [
["path",{"d":"M16 10V9"}],
["path",{"d":"M16 15v-1"}],
["path",{"d":"M16 21v-2"}],
["path",{"d":"M16 5V3"}],
["path",{"d":"M8 10V9"}],
["path",{"d":"M8 15v-1"}],
["path",{"d":"M8 21v-2"}],
["path",{"d":"M8 5V3"}],
["rect",{"x":"3","y":"3","width":"18","height":"18","rx":"2"}]
])
const PanelTopBottomDashedIcon = createLucideIcon('PanelTopBottomDashed', [
["path",{"d":"M14 16h1"}],
["path",{"d":"M14 8h1"}],
["path",{"d":"M19 16h2"}],
["path",{"d":"M19 8h2"}],
["path",{"d":"M3 16h2"}],
["path",{"d":"M3 8h2"}],
["path",{"d":"M9 16h1"}],
["path",{"d":"M9 8h1"}],
["rect",{"x":"3","y":"3","width":"18","height":"18","rx":"2"}]
]) |
@karsa-mistmere @jguddas as discussed here's the PR that expands the existing panel-dashed icons 😁 |
In short: I would remove all icons besides |
Please don't state this as fact, we should postpone merging orientations, as we are in no way ready for handling the automation of mirrored and rotated variants. Forcing people to use CSS transforms is not an option, since browsers (and HTML in general) are not our only target. |
@jguddas it's also not possible to rotate instances inside figma components without detaching them. |
I changed my mind, I think it's good as long as they have a unique use case. |
Description
Added new variants to the panel-dashed icon set:
Also updated the json files of existing icons to include:
Icon use case
These icons will be used to represent paddings or margins, for example when customizing a UI element:

Alternative icon designs
Icon Design Checklist
Concept
Author, credits & license
Naming
icons/[iconName].json
.Design
Before Submitting