SpeedDial button prop update

pull/5701/head
tugcekucukoglu 2024-05-03 11:04:11 +03:00
parent 040ea8b9fd
commit 2a1f76efcf
2 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ export default {
actionButtonProps: {
type: Object,
default() {
return { severity: 'secondary', text: true, rounded: true, size: 'small' };
return { severity: 'secondary', rounded: true, size: 'small' };
}
},
ariaLabelledby: {

View File

@ -276,7 +276,7 @@ export interface SpeedDialProps {
/**
* Used to pass all properties of the ButtonProps to the item component.
* @type {ButtonProps}
* @defaultValue { severity: 'secondary', text: true, rounded: true, size: 'small' }
* @defaultValue { severity: 'secondary', rounded: true, size: 'small' }
*/
actionButtonProps?: object | undefined;
/**