fix(item): add disabled property and styles

This commit is contained in:
Brandy Carney
2018-02-13 19:48:33 -05:00
parent 7f817a908f
commit b86861170c
4 changed files with 28 additions and 1 deletions

View File

@ -1438,6 +1438,7 @@ declare global {
namespace JSXElements {
export interface IonItemAttributes extends HTMLAttributes {
color?: string;
disabled?: boolean;
href?: string;
mode?: 'ios' | 'md';
onclick?: (this: HTMLElement, ev: MouseEvent) => any;