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.
25 lines (24 loc) • 777 B
TypeScript
import { LitElement } from 'lit';
/** 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;
/**
* The orientation of the actions.
* @attr
*/
orientation: 'vertical' | 'horizontal';
protected render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'igc-card-actions': IgcCardActionsComponent;
}
}