-
-
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
refactor(icons): optimised some align
-, indent
- and list
-icons
#2528
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 AlignCenterIcon = createLucideIcon('AlignCenter', [
["path",{"d":"M17 12H7"}],
["path",{"d":"M19 18H5"}],
["path",{"d":"M21 6H3"}]
])
const AlignJustifyIcon = createLucideIcon('AlignJustify', [
["path",{"d":"M3 12h18"}],
["path",{"d":"M3 18h18"}],
["path",{"d":"M3 6h18"}]
])
const AlignLeftIcon = createLucideIcon('AlignLeft', [
["path",{"d":"M15 12H3"}],
["path",{"d":"M17 18H3"}],
["path",{"d":"M21 6H3"}]
])
const AlignRightIcon = createLucideIcon('AlignRight', [
["path",{"d":"M21 12H9"}],
["path",{"d":"M21 18H7"}],
["path",{"d":"M21 6H3"}]
])
const IndentDecreaseIcon = createLucideIcon('IndentDecrease', [
["path",{"d":"M21 12H11"}],
["path",{"d":"M21 18H11"}],
["path",{"d":"M21 6H11"}],
["path",{"d":"m7 8-4 4 4 4"}]
])
const IndentIncreaseIcon = createLucideIcon('IndentIncrease', [
["path",{"d":"M21 12H11"}],
["path",{"d":"M21 18H11"}],
["path",{"d":"M21 6H11"}],
["path",{"d":"m3 8 4 4-4 4"}]
])
const ListOrderedIcon = createLucideIcon('ListOrdered', [
["path",{"d":"M10 12h11"}],
["path",{"d":"M10 18h11"}],
["path",{"d":"M10 6h11"}],
["path",{"d":"M4 10h2"}],
["path",{"d":"M4 6h1v4"}],
["path",{"d":"M6 18H4c0-1 2-2 2-3s-1-1.5-2-1"}]
])
const ListIcon = createLucideIcon('List', [
["path",{"d":"M3 12h.01"}],
["path",{"d":"M3 18h.01"}],
["path",{"d":"M3 6h.01"}],
["path",{"d":"M8 12h13"}],
["path",{"d":"M8 18h13"}],
["path",{"d":"M8 6h13"}]
]) |
jguddas
approved these changes
Oct 11, 2024
Great work, thx @jamiemlaw! |
This was referenced Nov 5, 2024
This was referenced Nov 6, 2024
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
Replaced
<line/>
and<polyline/>
elements with equivalent<path/>
s using Lucide Studio's 'tidy' functionBefore Submitting