import {LitElement, html, unsafeCSS} from 'lit'; import {customElement, property} from 'lit/decorators.js'; import iconStyle from './icon-button.css?inline'; import {classMap} from 'lit/directives/class-map.js'; @customElement('obc-icon-button') export class ObcIconButton extends LitElement { @property({type: String}) variant = 'normal'; @property({type: String}) size = 'regular'; @property({type: Boolean}) activated = false; @property({type: Boolean}) cornerLeft = false; @property({type: Boolean}) cornerRight = false; @property({type: Boolean}) activeColor = false; override render() { return html` `; } static override styles = unsafeCSS(iconStyle); } declare global { interface HTMLElementTagNameMap { 'obc-icon-button': ObcIconButton; } }