UNPKG

igniteui-webcomponents

Version:

Ignite UI for Web Components is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach.

27 lines (26 loc) 844 B
import { LitElement } from 'lit'; import type { ContentOrientation } from '../types.js'; /** A container for card action items like buttons * @element igc-card-actions * * @slot start - Renders items at the beginning of actions area * @slot - Renders items at the middle of actions area * @slot end - Renders items at the end of actions area */ export default class IgcCardActionsComponent extends LitElement { static readonly tagName = "igc-card-actions"; static styles: import("lit").CSSResult; static register(): void; constructor(); /** * The orientation of the actions. * @attr */ orientation: ContentOrientation; protected render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'igc-card-actions': IgcCardActionsComponent; } }