-
Notifications
You must be signed in to change notification settings - Fork 58
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
Auto-optimized sprites using <symbol>
and <use>
#256
Comments
Sounds like an interesting idea to avoid duplication. However, I am not sure how to handle the cases when the first icon gets unmounted while the second remains. On the other hand, I think the CSS mode solves this problem is a much better way (which is already the the default). Wonder what's the block prevent you from using the CSS mode? |
#167 and fine-grained control over the customization of icons, especially the local ones.
Perhaps by inserting a hidden <!-- First usage -->
<Icon name="logo" />
<!-- Additional usage-->
<Icon name="logo" />
<!-- Generates the following HTML -->
<body>
<svg hidden aria-hidden="true">
<symbol id="ai:uniqueid"><!-- contents of logo.svg --></symbol>
</svg>
<!-- Some other markup -->
<!-- Note that `href` suffices since `xlink:href` has been deprecated -->
<svg data-icon="logo">
<use href="#ai:uniqueid"></use>
</svg>
<svg data-icon="logo">
<use href="#ai:uniqueid"></use>
</svg>
</body> |
that's how nuxt-sprite working |
Astro Icon is a similar module for Astro projects that also utilizes Iconify under the hood. It automatically optimizes repeated references to the same icon on a page, using a simple approach that results in smaller HTML documents (official documentation).
In a nutshell, the first time the
<Icon>
component is included on a page, it defines a sprite<symbol>
with a unique ID and immediately renders that symbol with the<use>
element. If the same icon is referenced again,<Icon>
will render only a<use>
element, reducing the overall size of the HTML document by referencing the existing<symbol>
.With that said:
It'd be nice to have this feature in Nuxt Icon module as well.
The text was updated successfully, but these errors were encountered: