UNPKG

@synergy-design-system/components

Version:

This package provides the base of the Synergy Design System as native web components. It uses [lit](https://www.lit.dev) and parts of [shoelace](https://shoelace.style/). Synergy officially supports the latest two versions of all major browsers (as define

26 lines (25 loc) 973 B
/** * --------------------------------------------------------------------- * 🔒 AUTOGENERATED BY VENDORISM * Removing this comment will prevent it from being managed by it. * --------------------------------------------------------------------- */ 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 2.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; }