我尝试在语义UI反应中使用标签。但是,它的颜色像下面一样反转。
我预计会低于1。
我的代码在这里:
<div className="resetBtn">
<Button size="medium" onClick={this.onResetClick} primary>Reset dates</Button>
<Label color="olive" pointing="below">Select the start date</Label>
</div>
我的代码怎么了?
答案 0 :(得分:0)
您应该为标签使用basic
属性。
因此,不要将Label
用作-
<Label color="olive" pointing="below">Select the start date</Label>
将基本属性添加为
Label
--p
<Label color="olive" pointing="below" basic>Select the start date</Label>
希望这会有所帮助。 here.
提供了有关Label组件基本属性的更多信息。