fix(icons): fixes guideline violations in package-* icons.#4074
Merged
karsa-mistmere merged 5 commits intolucide-icons:mainfrom Feb 23, 2026
Merged
fix(icons): fixes guideline violations in package-* icons.#4074karsa-mistmere merged 5 commits intolucide-icons:mainfrom
package-* icons.#4074karsa-mistmere merged 5 commits intolucide-icons:mainfrom
Conversation
Contributor
Added or changed iconsIcons as codeWorks for: const PackageCheckIcon = createLucideIcon('PackageCheck', [
["path",{"d":"M12 22V12"}],
["path",{"d":"m16 17 2 2 4-4"}],
["path",{"d":"M21 11.127V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.729l7 4a2 2 0 0 0 2 .001l1.32-.753"}],
["path",{"d":"M3.29 7 12 12l8.71-5"}],
["path",{"d":"m7.5 4.27 8.997 5.148"}]
])
const PackageMinusIcon = createLucideIcon('PackageMinus', [
["path",{"d":"M12 22V12"}],
["path",{"d":"M16 17h6"}],
["path",{"d":"M21 13V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.729l7 4a2 2 0 0 0 2 .001l1.675-.955"}],
["path",{"d":"M3.29 7 12 12l8.71-5"}],
["path",{"d":"m7.5 4.27 8.997 5.148"}]
])
const PackagePlusIcon = createLucideIcon('PackagePlus', [
["path",{"d":"M12 22V12"}],
["path",{"d":"M16 17h6"}],
["path",{"d":"M19 14v6"}],
["path",{"d":"M21 10.535V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.729l7 4a2 2 0 0 0 2 .001l1.675-.955"}],
["path",{"d":"M3.29 7 12 12l8.71-5"}],
["path",{"d":"m7.5 4.27 8.997 5.148"}]
])
const PackageSearchIcon = createLucideIcon('PackageSearch', [
["path",{"d":"M12 22V12"}],
["path",{"d":"M20.27 18.27 22 20"}],
["path",{"d":"M21 10.498V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.729l7 4a2 2 0 0 0 2 .001l.98-.559"}],
["path",{"d":"M3.29 7 12 12l8.71-5"}],
["path",{"d":"m7.5 4.27 8.997 5.148"}],
["circle",{"cx":"18.5","cy":"16.5","r":"2.5"}]
])
const PackageXIcon = createLucideIcon('PackageX', [
["path",{"d":"M12 22V12"}],
["path",{"d":"m16.5 14.5 5 5"}],
["path",{"d":"m16.5 19.5 5-5"}],
["path",{"d":"M21 10.5V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.729l7 4a2 2 0 0 0 2 .001l.13-.074"}],
["path",{"d":"M3.29 7 12 12l8.71-5"}],
["path",{"d":"m7.5 4.27 8.997 5.148"}]
]) |
ericfennis
approved these changes
Feb 19, 2026
This file contains hidden or 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
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
Fixes various guideline violations in
package-*icons, mostly focusing onpackage-xwhich has severe gap guideline violations. Adjusted the rest of the icons to match.Before Submitting