ant-design / ant-design-icons

⭐ Ant Design SVG Icons
https://ant.design/components/icon/
MIT License
940 stars 577 forks source link

`color` prop for custom IconFont component is incorrect #497

Open JounQin opened 2 years ago

JounQin commented 2 years ago

image

color should be on svg.

JounQin commented 2 years ago

related https://github.com/ant-design/ant-design/issues/13137#issuecomment-908247345

JounQin commented 2 years ago

Current workaround:

export function Icon({ color, style }: IconFontProps) {
  return (
    <IconFont
      style={{
        color,
        ...style,
      }}
      {...props}
    />
  )
}