mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
fix(fab-button): adding size prop instead of [mini] (#16692)
- Consistency with rest of API - Auto docs - Helps react fixes #16680
This commit is contained in:
8
core/src/components.d.ts
vendored
8
core/src/components.d.ts
vendored
@ -1359,6 +1359,10 @@ export namespace Components {
|
||||
*/
|
||||
'show': boolean;
|
||||
/**
|
||||
* The size of the button. Set this to `small` in order to have a mini fab.
|
||||
*/
|
||||
'size'?: 'small';
|
||||
/**
|
||||
* If `true`, the fab button will be translucent.
|
||||
*/
|
||||
'translucent': boolean;
|
||||
@ -1405,6 +1409,10 @@ export namespace Components {
|
||||
*/
|
||||
'show'?: boolean;
|
||||
/**
|
||||
* The size of the button. Set this to `small` in order to have a mini fab.
|
||||
*/
|
||||
'size'?: 'small';
|
||||
/**
|
||||
* If `true`, the fab button will be translucent.
|
||||
*/
|
||||
'translucent'?: boolean;
|
||||
|
Reference in New Issue
Block a user