我安装了react-icons库,并更改了图标大小,但颜色不适用。代码:
<TbCircleCheckFilled size={24} color="red" />
我想更改React图标的颜色
bvuwiixz1#
import { IconContext } from "react-icons"; <IconContext.Provider value={{ color: "blue", className: "global-class-name" }}> <div> <FaFolder /> </div> </IconContext.Provider>;
你可以在这里查医生。
1条答案
按热度按时间bvuwiixz1#
你可以在这里查医生。