import {LitElement, html, unsafeCSS} from 'lit';
import {customElement, property} from 'lit/decorators.js';
import compentStyle from './breadcrumb.css?inline';
import '../../icons/icon-chevron-right-google';
export interface BreadcrumbItem {
label: string;
}
@customElement('obc-breadcrumb')
export class ObcBreadcrumb extends LitElement {
@property({attribute: false}) items = [] as BreadcrumbItem[];
override render() {
return html`
`;
}
static override styles = unsafeCSS(compentStyle);
}
declare global {
interface HTMLElementTagNameMap {
'obc-breadcrumb': ObcBreadcrumb;
}
}