materialize-angular
Version:
Material UI Angular library
21 lines (20 loc) • 661 B
TypeScript
/**
* @license
* Copyright Workylab. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://raw.githubusercontent.com/workylab/materialize-angular/master/LICENSE
*/
import { EventEmitter } from '@angular/core';
import { ICON_SIZES, IconModel } from './icon.model';
export declare class IconComponent implements IconModel {
static readonly defaultProps: IconModel;
onClickEmitter: EventEmitter<void>;
onBlurEmitter: EventEmitter<void>;
className: string;
size: ICON_SIZES;
prefix: string;
constructor();
onClick(): void;
onBlur(): void;
}