-
-
Notifications
You must be signed in to change notification settings - Fork 571
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): upgrade snowflake icons to match real life #2610
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Added or changed iconsIcons as codeWorks for: const SnowflakeIcon = createLucideIcon('Snowflake', [
["path",{"d":"m10 20-1.25-2.5L6 18"}],
["path",{"d":"M10 4 8.75 6.5 6 6"}],
["path",{"d":"m14 20 1.25-2.5L18 18"}],
["path",{"d":"m14 4 1.25 2.5L18 6"}],
["path",{"d":"m17 21-3-6h-4"}],
["path",{"d":"m17 3-3 6 1.5 3"}],
["path",{"d":"M2 12h6.5L10 9"}],
["path",{"d":"m20 10-1.5 2 1.5 2"}],
["path",{"d":"M22 12h-6.5L14 15"}],
["path",{"d":"m4 10 1.5 2L4 14"}],
["path",{"d":"m7 21 3-6-1.5-3"}],
["path",{"d":"m7 3 3 6h4"}]
])
const SunSnowIcon = createLucideIcon('SunSnow', [
["path",{"d":"M10 21v-1"}],
["path",{"d":"M10 4V3"}],
["path",{"d":"M10 9a3 3 0 0 0 0 6"}],
["path",{"d":"m14 20 1.25-2.5L18 18"}],
["path",{"d":"m14 4 1.25 2.5L18 6"}],
["path",{"d":"m17 21-3-6 1.5-3H22"}],
["path",{"d":"m17 3-3 6 1.5 3"}],
["path",{"d":"M2 12h1"}],
["path",{"d":"m20 10-1.5 2 1.5 2"}],
["path",{"d":"m3.64 18.36.7-.7"}],
["path",{"d":"m4.34 6.34-.7-.7"}]
])
const ThermometerSnowflakeIcon = createLucideIcon('ThermometerSnowflake', [
["path",{"d":"m10 20-1.25-2.5L6 18"}],
["path",{"d":"M10 4 8.75 6.5 6 6"}],
["path",{"d":"M10.585 15H10"}],
["path",{"d":"M2 12h6.5L10 9"}],
["path",{"d":"M20 14.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0z"}],
["path",{"d":"m4 10 1.5 2L4 14"}],
["path",{"d":"m7 21 3-6-1.5-3"}],
["path",{"d":"m7 3 3 6h2"}]
]) |
Merged
What about arcifying the inner hexagon? |
jguddas
approved these changes
Nov 13, 2024
jguddas
approved these changes
Dec 18, 2024
ericfennis
approved these changes
Dec 20, 2024
realguse
pushed a commit
to realguse/lucide
that referenced
this pull request
Dec 25, 2024
…#2610) Co-authored-by: Eric Fennis <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What is the purpose of this pull request?
Description
Real snowflakes have six-fold rotational symmetry, this PR upgrades snowflake icons to look more accurate and have better uniformity between them.
Before Submitting