-
-
Notifications
You must be signed in to change notification settings - Fork 524
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
feat(icons): added air-pressure
icon
#2554
Conversation
And slightly modified the `wind` icon to match
Added or changed iconsIcons as codeWorks for: const WindArrowDownIcon = createLucideIcon('WindArrowDown', [
["path",{"d":"M10 2v8"}],
["path",{"d":"M12.8 21.6A2 2 0 1 0 14 18H2"}],
["path",{"d":"M17.5 10a2.5 2.5 0 1 1 2 4H2"}],
["path",{"d":"m6 6 4 4 4-4"}]
])
const WindIcon = createLucideIcon('Wind', [
["path",{"d":"M12.8 19.6A2 2 0 1 0 14 16H2"}],
["path",{"d":"M17.5 8a2.5 2.5 0 1 1 2 4H2"}],
["path",{"d":"M9.8 4.4A2 2 0 1 1 11 8H2"}]
]) |
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.
Nice, but name needs to be descriptive.
icons/air-pressure.json
Outdated
{ | ||
"$schema": "../icon.schema.json", | ||
"contributors": [ | ||
"jamiemlaw" |
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.
Can you inherit the contributors here, or did you do a complete redesign?
And update the JSON file with contributors to the original `wind` icon and add `pressure` as a tag
Nice icon @jamiemlaw ! |
What is the purpose of this pull request?
Description
Going part way to close issue #119 and Feather Icons issue #1246, adds an
air-pressure
icon to Lucide.Icon use case
Icon Design Checklist
Concept
Author, credits & license
wind
Naming
icons/[iconName].json
.Design
Before Submitting