materialize-angular
Version:
Material UI Angular library
20 lines (19 loc) • 452 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
*/
export interface IconModel {
className: string;
size: ICON_SIZES;
}
export declare enum ICON_SIZES {
NONE = "",
XS = "xs",
SM = "sm",
MD = "md",
LG = "lg",
XL = "xl"
}