Divider
Implementation
import { LitElement, css, html } from 'lit';
import { customElement, property } from 'lit/decorators.js';
@customElement('zakuni-divider')
export class ZakuniDivider extends LitElement {
static styles = css`
hr {
border: none;
border-top: 1px solid;
}
`;
render() {
return html`
<hr>
`;
}
}