@esri/calcite-components
Version:
Web Components for Esri's Calcite Design System.
18 lines (17 loc) • 437 B
TypeScript
/// <reference path="../../index.d.ts" />
import type { PublicLitElement as LitElement } from "@arcgis/lumina";
/** @slot - A slot for adding content. */
export abstract class CarouselItem extends LitElement {
/**
* Specifies an accessible label for the component.
*
* @required
*/
accessor label: string;
/**
* When `true`, the component is selected.
*
* @default false
*/
accessor selected: boolean;
}