@esri/calcite-components
Version:
Web Components for Esri's Calcite Design System.
29 lines (27 loc) • 575 B
JavaScript
const CSS = {
actions: "actions",
actionsEnd: "actions--end",
actionsStart: "actions--start",
description: "description",
handle: "handle",
handleActivated: "handle--activated",
highlight: "highlight",
icon: "icon",
iconDot: "icon-dot",
label: "label",
remove: "remove",
title: "title",
textContainer: "text-container"
};
const ICONS = {
checked: "check",
remove: "x"
};
const SLOTS = {
actionsEnd: "actions-end",
actionsStart: "actions-start"
};
const TEXT = {
remove: "remove"
};
export { CSS as C, ICONS as I, SLOTS as S, TEXT as T };