Skip to content

Commit

Permalink
fix: icons are hard
Browse files Browse the repository at this point in the history
  • Loading branch information
glitchgirl committed Jan 18, 2024
1 parent b0cd894 commit eb2a478
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,11 @@ export class OutlineCoreBreadcrumb extends OutlineElement {

this.applyBackIcon(backLink);

return isMobile ? html`${backLink}` : html`<slot></slot>`;
return isMobile ? html`${backLink}` : html`<div>
<slot name="home-icon"></slot>
<slot name="back-icon"></slot>
<slot></slot>
</div>`;
}
}

Expand Down

0 comments on commit eb2a478

Please sign in to comment.