feat(uishell): add right panel links

This commit is contained in:
Marcus Feitoza 2020-04-16 15:56:52 -03:00
commit 44189c8819
5 changed files with 43 additions and 9 deletions

View file

@ -0,0 +1,11 @@
<script>
export let href;
import { cx } from '../../../lib';
</script>
<li class={cx('--switcher__item')}>
<a class={cx('--switcher__item-link')} {href}>
<slot />
</a>
</li>