Vjacheslav Trushkin

Results 108 comments of Vjacheslav Trushkin

It is new, I haven't even announced it yet and if you'll look at readme file, it still shows instructions for `@iconify/react` :) However, it can be considered stable. It...

That's a strange error. Can you try this and tell me if it helps? Open `node_modules/@iconify-icon/react/dist/iconify.d.ts`, find this code: ```ts interface IconifyIconProps extends React.HTMLProps, IconifyIconProperties { rotate?: string | number;...

Thanks a lot! That was indeed the problem. It was caused by small configuration issue, which caused bundler to generate incomplete types. It is after midnight for me, so I'll...

Fixed in version 0.0.2 of React component.

There is no such property and never was. It is part of `style` property: ``

Icon content is rendered in shadow DOM, so there is nothing to change on server side rendering. The only thing that can be done is setting style for web component...

It does support those properties. However, if mixing it with css above, it might cause problems. For example, if you use ``, assuming icon is square (almost all icons are),...

Published stable version of web component. Closing this issue.

I've just tested it with Vue 3 demo, title is passed correctly: ```vue ``` results in: ```html ``` There is also unit test in component for passing title property, it...

It can be done, but it is not trivial. Problem is, that would require sanitising title tag, which adds to icon component size, so I'm not sure if it is...