fix(fab): add side as a property for fab list

This commit is contained in:
Brandy Carney
2018-03-07 18:36:12 -05:00
parent 1bf50cb1a7
commit 7387d34271
6 changed files with 53 additions and 15 deletions

View File

@ -908,6 +908,7 @@ declare global {
namespace JSXElements {
export interface IonFabListAttributes extends HTMLAttributes {
activated?: boolean;
side?: 'left' | 'right' | 'top' | 'bottom';
}
}
}