@tarojs/components
Version:
9 lines (8 loc) • 327 B
TypeScript
import { ComponentInterface } from '../../stencil-public-runtime';
export type Type = 'success' | 'success_no_circle' | 'info' | 'warn' | 'waiting' | 'cancel' | 'download' | 'search' | 'clear';
export declare class Icon implements ComponentInterface {
type: Type;
size: string | number;
color: string;
render(): any;
}