15 lines
446 B
JavaScript
15 lines
446 B
JavaScript
import BaseStyle from 'primevue/base/style';
|
|
|
|
const classes = {
|
|
root: 'p-confirm-dialog',
|
|
icon: 'p-confirm-dialog-icon',
|
|
message: 'p-confirm-dialog-message',
|
|
rejectButton: ({ instance }) => ['p-confirm-dialog-reject', instance.confirmation && !instance.confirmation.rejectClass ? 'p-button-text' : null],
|
|
acceptButton: 'p-confirm-dialog-accept'
|
|
};
|
|
|
|
export default BaseStyle.extend({
|
|
name: 'confirmdialog',
|
|
classes
|
|
});
|