React-能够通过道具控制SVG的填充颜色 [英] React - Ability to control fill color of an SVG through props

查看:133
本文介绍了React-能够通过道具控制SVG的填充颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个SVG,在这里称为"example.svg",它是作为一个组件被调用并创建的,就像这样:

I have a SVG, here called "example.svg", that's being called and created as a component, like so:

import { ReactComponent as Example } from './example.svg';
import styles from './index.module.css';

const ExampleImg = ({ ...otherProps }) => (
  <Example className={styles.image} {...otherProps} />
);

export default ExampleImg;

此组件在其他位置被调用-在myPage上说-像这样:

This component is being called elsewhere - say on myPage - like this:

const myButton = <ExampleImg {...nextButtonProps} />;

我的问题是这样

我需要能够通过插入可以从SVG外部进行控制的道具来控制SVG的填充颜色.有问题的SVG:

I need to be able to control the fill color of the SVG by inserting a prop that can be controlled from outside the SVG. The SVG in question:

<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
     viewBox="0 0 216 216" style="enable-background:new 0 0 216 216;" xml:space="preserve">
<style type="text/css">
    .st0{fill:#FFFFFF;}
    .st1{fill:#0969A6;}
    .st2{fill:#36BC0A;}
    .st3{fill:#C41C1C;}
    .st4{fill:#CECECE;}
    .st5{fill:#FEFEFE;}
    .st6{fill:#FFFFFF;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;}
    .st7{fill:#FFFFFF;stroke:#FFFFFF;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<circle class="st4" cx="107.25" cy="109.75" r="68.75"/>
<path class="st5" d="M149.79,104.21c2.58,4.89,1.33,9.67-3.32,12.55c-1.33,0.83-2.86,0.97-4.37,0.97c-15.97,0.01-31.94,0-47.91,0
    c-0.76,0-1.51,0-2.42,0c0.46,1.13,1.38,1.71,2.08,2.41c5.01,5.04,10.04,10.07,15.13,15.03c3.96,3.85,3.48,8.88,1.63,11.57
    c-3.39,4.92-9.95,5.24-14.26,0.87c-7.76-7.86-15.61-15.63-23.42-23.44c-2.92-2.92-5.78-5.92-8.77-8.77
    c-2.94-2.8-3.79-8.71-0.42-12.31c0.62-0.66,1.21-1.34,1.82-2.02c0.19,0.02,0.32-0.05,0.35-0.25c0.06-0.05,0.11-0.11,0.14-0.18
    c0.51-0.28,0.93-0.65,1.13-1.22c0,0,0.05-0.04,0.05-0.04c0.53-0.14,0.89-0.47,1.06-1c0,0,0.02-0.02,0.02-0.02
    c2.81-2.51,5.36-5.27,8.02-7.93c6.86-6.87,13.71-13.74,20.56-20.61c4.31-4.33,10.5-3.39,13.84,1.71c2.23,3.41,1.51,7.98-1.81,11.27
    c-3.55,3.52-7.13,7-10.64,10.56c-0.86,0.88-2.02,1.53-2.47,2.79c0,0-0.03,0.02-0.03,0.02c-1.05,0.54-1.81,1.37-2.42,2.36
    c0,0-0.05,0.05-0.05,0.05c-0.22,0.12-0.48,0.19-0.64,0.36c-0.28,0.32-0.85,0.58-0.6,1.09c0.19,0.4,0.73,0.19,1.11,0.25
    c0.15,0.02,0.3-0.01,0.45-0.01c14.09,0,28.18-0.02,42.27,0.02c3.56,0.01,7.16-0.4,10.63,0.84c0.07,0.05,0.14,0.08,0.22,0.1
    c0.2,0.33,0.49,0.55,0.88,0.6c0.03,0.07,0.08,0.13,0.14,0.17c0.03,0.28,0.21,0.4,0.47,0.42c0,0,0.03,0.03,0.03,0.03
    c0.07,0.31,0.28,0.49,0.59,0.56c0,0,0.02,0.02,0.02,0.02c0.02,0.26,0.15,0.43,0.41,0.48c0.02,0.07,0.06,0.13,0.12,0.18
    C149.45,103.91,149.56,104.1,149.79,104.21z"/>
</svg>

具体来说,.st4是需要插入道具的类,类似于{fill: {currentColor}}.

Specifically, .st4 is the class that needs a prop inserted, something like {fill: {currentColor}}.

然后,您可以在调用ExampleImg时根据条件通过currentColor道具传递currentColor来控制填充.

Then, you can pass in currentColor through the myPage props when it calls ExampleImg to control the fill depending on the condition.

老实说,我不知道如何解决这个问题,因此任何指导将不胜感激!

I honestly don't have any idea how to approach this, so any guidance would be much appreciated!

推荐答案

那么我是否正确理解该SVG将被重写为React组件? (除非有一些重要原因,否则我可能会这样做). CSS实际上具有 currentColor 键值color属性,因此您可以从外部控制颜色,即:

So did I understand correctly that this SVG will be rewritten as a React component? (which I'd probably do unless some important reasons). CSS actually has currentColor key value for a color property, so you can controll the color from outside, i.e.:

.svg-container {
  color: black; // or whatever color really
}

.st4 {
  fill: currentColor;
}

这篇关于React-能够通过道具控制SVG的填充颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆