UNPKG

@umbraco-ui/uui-caret

Version:

A caret with an open and close animation

23 lines (22 loc) 615 B
import { LitElement } from 'lit'; /** * DEPRECATED: Please use uui-symbol-expand or uui-symbol-sort. A caret that rotates on click. Color will be `currentColor` * @deprecated since version 0.0.8 * @element uui-caret */ export declare class UUICaretElement extends LitElement { /** * Turns the arrow around. * @type {boolean} * @default false */ open: boolean; constructor(); render(): import("lit-html").TemplateResult<1>; static styles: import("lit").CSSResult[]; } declare global { interface HTMLElementTagNameMap { 'uui-caret': UUICaretElement; } }