@kor-ui/kor
Version:
Web components library containing lightweight, ready-to-use and framework-agnostic User Interface elements.
13 lines (12 loc) • 621 B
TypeScript
import { LitElement } from 'lit';
/**
* @prop {'s'|'m'|'l'} spacing - Defines the space around the divider. Possible values are `s`, `m` and `l`.
* @prop {'horizontal'|'vertical'} orientation - Defines the orientation of the divider. Possible values are `vertical` and `horizontal`.
*/
export declare class korDivider extends LitElement {
spacing: 's' | 'm' | 'l';
orientation: 'horizontal' | 'vertical';
static get styles(): import("lit").CSSResultGroup[];
render(): import("lit-html").TemplateResult<1>;
attributeChangedCallback(name: string, oldval: string, newval: string): void;
}