@synergy-design-system/components
Version:
20 lines (19 loc) • 719 B
TypeScript
import SynergyElement from '../../internal/synergy-element.js';
import type { CSSResultGroup } from 'lit';
/**
* @summary Dividers are used to visually separate or group elements.
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-divider--docs
* @status stable
* @since 1.4.0
*
* @cssproperty --color - The color of the divider.
* @cssproperty --width - The width of the divider.
* @cssproperty --spacing - The spacing of the divider.
*/
export default class SynDivider extends SynergyElement {
static styles: CSSResultGroup;
/** Draws the divider in a vertical orientation. */
vertical: boolean;
connectedCallback(): void;
handleVerticalChange(): void;
}