refactor(fab): combine boolean position attributes to string props

fixes #13596
This commit is contained in:
Brandy Carney
2018-03-07 17:31:05 -05:00
parent dc8b363ea8
commit cc365f829d
8 changed files with 203 additions and 73 deletions

View File

@ -937,7 +937,9 @@ declare global {
}
namespace JSXElements {
export interface IonFabAttributes extends HTMLAttributes {
edge?: boolean;
horizontal?: 'left' | 'right' | 'center' | 'start' | 'end';
vertical?: 'top' | 'center' | 'bottom';
}
}
}