を使用して作成されたラジオボタンのラベルに色を付けるには反応materialize入力コンポーネント?react-materializeのラジオボタンのラベルを付ける方法
radioButtonsのサンプルコードは次のようなものですか?
<div className="col s2 offset-s3">
<Input className="with-gap" label="List" name="homePageSearchRadio" type="radio" value="group"/>
</div>
<div className="col s2">
<Input className="with-gap" label="User" name="homePageSearchRadio" type="radio" value="user"/>
</div>
<div className="col s2">
<Input className="with-gap" label="data" name="homePageSearchRadio" type="radio" value="data"/>
</div>
スタイルプロパティを追加しようとしましたが、実際にはhtmlのinput要素に追加されています。誰かがここで私を助けることができる?
おかげで、 Sreeraj
:
だから私はレポをフォークしてhttps://github.com/piyushdhamecha/react-materializeを更新したが、
Input
コンポーネントあなたが同じように使用できるに
labelClassName
を追加しました'label' ... –