我认为这是如果您想使用size
属性在下拉列表和另一个组件(如按钮)之间创建相同的大小,您可以将下拉列表放在按钮内:
import React from 'react'
import { Dropdown, Menu, Button } from 'semantic-ui-react'
const options = [
{ key: 1, text: 'Choice 1', value: 1 },
{ key: 2, text: 'Choice 2', value: 2 },
{ key: 3, text: 'Choice 3', value: 3 },
]
const DropdownExampleSimple = () => (
<div>
<Button size="tiny" >
<Dropdown text='Dropdown' options={options} simple item />
</Button>
<Button size="tiny">
This is Button
</Button>
</div>
)
export default DropdownExampleSimple
这是结果:
或许能帮到你,谢谢