**Describe the bug** In V4, the icon displays the size and color based on `size-[size]` and `text-[color]` className. In V5, it doesn't work. <img width="240" height="520" alt="Image" src="https://github.com/user-attachments/assets/d1f7318a-2def-4221-a80a-e729d6139a5e" /> <img width="240" height="520" alt="Image" src="https://github.com/user-attachments/assets/e0047e72-ebb3-4b08-9e4e-66c8e5c4f26f" /> **Reproduction** - This is the [V4 code](https://github.com/albertcito/nativewinds/blob/main/v4/App.tsx) and this is the [V4 Icon component](https://github.com/albertcito/nativewinds/blob/main/v4/components/LucideIcon.tsx) ``` cssInterop(IconStyled, { className: { target: "style", nativeStyleToProp: { height: "size", width: "size", }, }, }); ``` - This is the [V5 code](https://github.com/albertcito/nativewinds/tree/main/v4) and this is [V5 Icon component](https://github.com/albertcito/nativewinds/blob/main/v5/components/LucideIcon.tsx#L15) ``` styled(IconStyled, { className: { target: "style", nativeStyleToProp: { height: "size", width: "size", }, }, }); ``` How can I make it work?