ConstThe properties for the ButtonDropDown component
A rendered ButtonDropDown component
// Basic usage
<ButtonDropDown
options={['Option 1', 'Option 2', 'Option 3']}
onButtonClick={(index, text) => console.log(text)}
/>
// With custom styling
<ButtonDropDown
options={['Small', 'Medium', 'Large']}
sx={{
backgroundColor: 'primary.light'
}}
/>
A customized Material-UI Button Drop Down component.