-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
new icon: angular (original, original-wordmark, plain, plain-wordmark) #1240
Conversation
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.
devicon.json
Outdated
"aliases": [ | ||
{ | ||
"base": "original", | ||
"alias": "plain" | ||
} | ||
] |
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.
Hello @gabrielfins, if you include a specific plain svg, then you don't need to declare an alias between the original and the plain font.
Is it correct now? |
Seems good on the But I think you need the Can you confirm @Panquesito7 ? |
@kilian-paquier never heard of that requirement before :O |
@Snailedlt My bad then ! The |
@kilian-paquier Ahh, yes you're right! Hadn't seen that there before :) |
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.
Some small changes needed, also can we add the wordmark logo too?
https://www.vectorlogo.zone/util/preview.html?image=/logos/angular/angular-ar21.svg
This is the wordmark logo they use on their website
Would be nice to have exactly that one, but it's a .png and not a .svg file :/
icons/angular/angular-plain.svg
Outdated
<?xml version="1.0" encoding="UTF-8"?> | ||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px" viewBox="0 0 128 128" version="1.1"> | ||
<g id="surface1"> | ||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 55.296875 69.324219 L 72.703125 69.324219 L 64 48.382812 Z M 55.296875 69.324219 "/> | ||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 64 15.359375 L 16.332031 32.359375 L 23.601562 95.386719 L 64 117.761719 L 104.398438 95.386719 L 111.667969 32.359375 Z M 93.746094 93.492188 L 82.636719 93.492188 L 76.644531 78.539062 L 51.355469 78.539062 L 45.363281 93.492188 L 34.253906 93.492188 L 64 26.675781 Z M 93.746094 93.492188 "/> | ||
</g> | ||
</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.
Like is explained here and like @kilian-paquier said already, paths must be united. Meaning you should only have one path node like in this suggestion:
<?xml version="1.0" encoding="UTF-8"?> | |
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px" viewBox="0 0 128 128" version="1.1"> | |
<g id="surface1"> | |
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 55.296875 69.324219 L 72.703125 69.324219 L 64 48.382812 Z M 55.296875 69.324219 "/> | |
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 64 15.359375 L 16.332031 32.359375 L 23.601562 95.386719 L 64 117.761719 L 104.398438 95.386719 L 111.667969 32.359375 Z M 93.746094 93.492188 L 82.636719 93.492188 L 76.644531 78.539062 L 51.355469 78.539062 L 45.363281 93.492188 L 34.253906 93.492188 L 64 26.675781 Z M 93.746094 93.492188 "/> | |
</g> | |
</svg> | |
<?xml version="1.0" encoding="UTF-8"?> | |
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px" viewBox="0 0 128 128" version="1.1"> | |
<g id="surface1"> | |
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 55.296875 69.324219 L 72.703125 69.324219 L 64 48.382812 Z M 55.296875 69.324219 M 64 15.359375 L 16.332031 32.359375 L 23.601562 95.386719 L 64 117.761719 L 104.398438 95.386719 L 111.667969 32.359375 Z M 93.746094 93.492188 L 82.636719 93.492188 L 76.644531 78.539062 L 51.355469 78.539062 L 45.363281 93.492188 L 34.253906 93.492188 L 64 26.675781 Z M 93.746094 93.492188 "/> | |
</g> | |
</svg> |
devicon.json
Outdated
"tags": [ | ||
"framework" | ||
], |
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 we add javascript as a tag here?
"tags": [ | |
"framework" | |
], | |
"tags": [ | |
"framework", | |
"javascript" | |
], |
added wordmark logo (original and plain), changed the plain version to contain only one <path> tag and added "javascript" to the tags in devicon.json
Hey y'all, I think all the changes requested are done now. I've added the wordmark logo that @Snailedlt requested and changed the colors to match the one they use in their website. I've also changed the plain version to have only one |
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.
Looks good to me.
Great work! 💯
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.
devicons#1240) * new icon: angular (original, plain) * revert formatting changes * added wordmark version and other changes added wordmark logo (original and plain), changed the plain version to contain only one <path> tag and added "javascript" to the tags in devicon.json
devicons#1240) * new icon: angular (original, plain) * revert formatting changes * added wordmark version and other changes added wordmark logo (original and plain), changed the plain version to contain only one <path> tag and added "javascript" to the tags in devicon.json
devicons#1240) * new icon: angular (original, plain) * revert formatting changes * added wordmark version and other changes added wordmark logo (original and plain), changed the plain version to contain only one <path> tag and added "javascript" to the tags in devicon.json
devicons#1240) * new icon: angular (original, plain) * revert formatting changes * added wordmark version and other changes added wordmark logo (original and plain), changed the plain version to contain only one <path> tag and added "javascript" to the tags in devicon.json
Double check these details before you open a PR
develop
branch.devicon.json
file as seen hereThis PR closes #991
Link to prove your SVG is correct and up-to-date.
https://angular.io/presskit