UNPKG

747 BTypeScriptView Raw
1import { ComponentInterface } from '../../stencil-public-runtime';
2import { Color } from '../../interface';
3/**
4 * @virtualProp {"ios" | "md"} mode - The mode determines which platform styles to use.
5 */
6export declare class Chip implements ComponentInterface {
7 /**
8 * The color to use from your application's color palette.
9 * Default options are: `"primary"`, `"secondary"`, `"tertiary"`, `"success"`, `"warning"`, `"danger"`, `"light"`, `"medium"`, and `"dark"`.
10 * For more information on colors, see [theming](/docs/theming/basics).
11 */
12 color?: Color;
13 /**
14 * Display an outline style button.
15 */
16 outline: boolean;
17 /**
18 * If `true`, the user cannot interact with the chip.
19 */
20 disabled: boolean;
21 render(): any;
22}