DropDownButton
Installation
import {DropDownButton} from 'uxp/components';Examples
Dropdown button basic example
<DropDownButton
content={() => <div>This is dropdown content</div>}
>
<button className="btn showcase" >Click to Show the dropdown</button>
</DropDownButton>Dropdown button example with options
<DropDownButton
content={() => <div>This is dropdown content</div>}
position="left"
showOnHover
>
<button className="btn showcase" >Click to Show the dropdown</button>
</DropDownButton>Properties
Name
Type
Description
content
type
position
type
showOnHover
type
className
type
onOpen
type
onClose
type
forceClose
type
Last updated