feat(ui-shell): make SideNavLink text slottable (#1187)

This commit is contained in:
metonym 2022-03-19 11:58:47 -07:00 committed by GitHub
commit 1462b2ee9c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 2 deletions

View file

@ -37,5 +37,5 @@ export interface SideNavLinkProps
export default class SideNavLink extends SvelteComponentTyped<
SideNavLinkProps,
{ click: WindowEventMap["click"] },
{ icon: {} }
{ default: {}; icon: {} }
> {}