Looks like #62 addressed that, but I think because IconBase explicitly passes a className to the main <Svg> component then any other classNames passed to the icons never makes it to the UI:
|
className={`${name}-${weight}__svg-icon-phosphor`} |
Maybe if instead it was
className={`${name}-${weight}__svg-icon-phosphor ${props.className ?? ''}`}
or something similar?
Looks like #62 addressed that, but I think because
IconBaseexplicitly passes aclassNameto the main<Svg>component then any otherclassNames passed to the icons never makes it to the UI:phosphor-react-native/src/lib/icon-base.tsx
Line 48 in 85b8b5d
Maybe if instead it was
or something similar?