angular-svg-icon icon indicating copy to clipboard operation
angular-svg-icon copied to clipboard

Angular component and service for inlining SVGs allowing them to be easily styled with CSS.

Results 13 angular-svg-icon issues
Sort by recently updated
recently updated
newest added

if you have same id in other svg then the second one will not display. Is there anyway to force svg to have unique id (via encapsulation) svg1: https://svgshare.com/i/_7P.svg svg2:...

enhancement

I created a custom Library with Angular Cli. It has the following structure: - dist - projects - customLib - src - assets - icons - lib - button The...

When `applyClass` using both `[class.name]` and `[ngClass]` are not applied: ```html ``` Results in: ```html ```

help wanted
change

I need to change the text of some svg at runtime. I can't seem to access the svg inside the container because it is private. ` ... text to change...

``` ``` ``` .header__logo-img { path { transition: all .3s; } &.white { path.white { fill: #fff; } } &:not(.white) { path.dark { fill: #42474C; } } } ``` on...

Thanks for this great component. I use it to load a bunch of icons. To minimize HTTP requests, I made an SVG sprite. This PR handle that. Any feedback are...

Hi czeckd! Please find a attached a proposal for a implementation of a fallback icon in case the icon url is broken. As I found myself the component dispatching a...

i'm loading my icon dynamically from API but sometime the API will change the icon name. is it possible that i get an error event or there is a wait...

enhancement

Hi, I am trying to initialize this in a typescript file using document.createElement to display in a map webapp as an overlay (openlayers). ` let jtiImageElement = document.createElement('svg-icon'); jtiImageElement.setAttribute('src', 'assets/icons/jtis/1A.svg');...

If SVG file has fill attribute at path tag, this attribute is not working when we set fill property on [svgStyle] because this attribute is adding fill attribute only to...