2023-10-02 10:46:09 +00:00
|
|
|
import BaseStyle from 'primevue/base/style';
|
|
|
|
|
|
|
|
const classes = {
|
2024-03-22 08:53:44 +00:00
|
|
|
root: 'p-splitbutton p-component',
|
2024-04-07 21:28:04 +00:00
|
|
|
button: 'p-splitbutton-button',
|
|
|
|
menuButton: 'p-splitbutton-dropdown'
|
2023-10-02 10:46:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default BaseStyle.extend({
|
|
|
|
name: 'splitbutton',
|
|
|
|
classes
|
|
|
|
});
|