Update PIS Icon from numbers to dialpad
This commit is contained in:
parent
ee8b547a19
commit
7dcf0c8b1b
@ -8,7 +8,7 @@
|
||||
{
|
||||
title: 'PIS Finder',
|
||||
path: '/pis/',
|
||||
icon: IconNumbers
|
||||
icon: IconDialpad
|
||||
},
|
||||
{
|
||||
title: 'Menu',
|
||||
@ -17,13 +17,13 @@
|
||||
}
|
||||
];
|
||||
import { page } from '$app/stores';
|
||||
import { IconHome, IconMenu2, IconNumbers } from '@tabler/icons-svelte';
|
||||
import { IconHome, IconMenu2, IconDialpad } from '@tabler/icons-svelte';
|
||||
</script>
|
||||
|
||||
<footer>
|
||||
|
||||
{#each links as item}
|
||||
<a href={item.path} class:active={$page.url.pathname == item.path}>
|
||||
<a href={item.path} class:active={$page.url.pathname == item.path || $page.url.pathname == item.path + "/"}>
|
||||
<svelte:component this={item.icon} />
|
||||
<br />
|
||||
<span>{item.title}</span>
|
||||
|
Loading…
Reference in New Issue
Block a user