-
-
Notifications
You must be signed in to change notification settings - Fork 517
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/gender icons #2363
Feat/gender icons #2363
Conversation
Added or changed iconsIcons as codeWorks for: const GenderAmbiguousIcon = createLucideIcon('GenderAmbiguous', [
["path",{"d":"M13 6a5 5 0 0 1 3 9"}],
["path",{"d":"M16.5 7.5 22 2"}],
["path",{"d":"M17 2h5v5"}],
["path",{"d":"M5 20h6"}],
["path",{"d":"M8 17v5"}],
["path",{"d":"M8.422 13A5 5 0 0 1 8 11"}],
["circle",{"cx":"8","cy":"12","r":"5"}]
])
const GenderFemaleIcon = createLucideIcon('GenderFemale', [
["path",{"d":"M12 15v7"}],
["path",{"d":"M8 19h8"}],
["circle",{"cx":"12","cy":"9","r":"6"}]
])
const GenderMaleIcon = createLucideIcon('GenderMale', [
["path",{"d":"M13 4h7v7"}],
["path",{"d":"M13.5 10.5 20 4"}],
["circle",{"cx":"9","cy":"15","r":"6"}]
])
const GenderNeuterIcon = createLucideIcon('GenderNeuter', [
["circle",{"cx":"12","cy":"9","r":"6"}],
["path",{"d":"M12 15v7"}]
])
const GenderTransIcon = createLucideIcon('GenderTrans', [
["path",{"d":"M12 17v5"}],
["path",{"d":"M15.5 8.5 22 2"}],
["path",{"d":"M17 2h5v5"}],
["path",{"d":"m2 2 6.5 6.5"}],
["path",{"d":"M2 7V2h5"}],
["path",{"d":"m4 9 5-5"}],
["path",{"d":"M9 20h6"}],
["circle",{"cx":"12","cy":"12","r":"5"}]
]) |
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.
The lack of inclusive language is a no-go for me.
Do we really want to do this, we have a "no politics" rule for a reason?
My vote is for not adding gender icons.
I don't see how it's political, but whatever. |
icons/gender-trans.svg
Outdated
<svg xmlns="http://www.w3.org/2000/svg" | ||
width="24" | ||
height="24" | ||
viewBox="0 0 24 24" | ||
fill="none" | ||
stroke="currentColor" | ||
stroke-width="2" | ||
stroke-linecap="round" | ||
stroke-linejoin="round"> | ||
<path d="M16 1H20C20.5523 1 21 1.44772 21 2V6" /> | ||
<path d="M1 6L1 2C1 1.44772 1.44772 1 2 1L6 1" /> | ||
<path d="M15 7L20.5 1.5" /> | ||
<path d="M1.5 1.5L7 7" /> | ||
<circle cx="11" cy="11" r="5" /> | ||
<path d="M11 16V21" /> | ||
<path d="M8 19H14" /> | ||
<path d="M3 7L7 3" /> | ||
</svg> | ||
|
||
|
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.
This does not follow our design guidelines (1px padding, 2px gap between elements).
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.
Also, I think that since all our current arrows have sharp heads, so should these.
- gender-trans position
@Trukl you can find some examples of gender icons I designed last week in this thread that abide by the two-pixel-gap rule, if you need inspiration. I also gave them generic names like I have since edited it to leave a note that I wasn't entirely happy with my design for the |
This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 5 days. |
What is the purpose of this pull request?
Description
Added new basic gender icons (male, female, both) for now
Icon use case
Alternative icon designs
Icon Design Checklist
Concept
Author, credits & license
Naming
icons/[iconName].json
.Design
Before Submitting