import { cssInterop } from "nativewind"; import { ForwardRefExoticComponent, RefAttributes } from "react"; import { SvgProps } from "react-native-svg"; export function iconWithClassName( icon: ForwardRefExoticComponent>, ) { cssInterop(icon, { className: { target: "style", nativeStyleToProp: { color: true, opacity: true, }, }, }); }