![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@polymer/iron-iconset-svg
Advanced tools
The iron-iconset-svg
element allows users to define their own icon sets
that contain svg icons. The svg icon elements should be children of the
iron-iconset-svg
element. Multiple icons should be given distinct id's.
Using svg elements to create icons has a few advantages over traditional bitmap graphics like jpg or png. Icons that use svg are vector based so they are resolution independent and should look good on any device. They are stylable via css. Icons can be themed, colorized, and even animated.
Example:
<iron-iconset-svg name="my-svg-icons" size="24">
<svg>
<defs>
<g id="shape">
<rect x="12" y="0" width="12" height="24" />
<circle cx="12" cy="12" r="12" />
</g>
</defs>
</svg>
</iron-iconset-svg>
This will automatically register the icon set "my-svg-icons" to the iconset
database. To use these icons from within another element, make a
iron-iconset
element and call the byId
method
to retrieve a given iconset. To apply a particular icon inside an
element use the applyIcon
method. For example:
iconset.applyIcon(iconNode, 'car');
FAQs
Manages a set of svg icons
The npm package @polymer/iron-iconset-svg receives a total of 0 weekly downloads. As such, @polymer/iron-iconset-svg popularity was classified as not popular.
We found that @polymer/iron-iconset-svg demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 11 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.