Files
AstralRinth/src/routes/components/NavRow.md
2022-06-04 00:46:23 -07:00

460 B

NavRow works well for most horizontal navigation with less than 10 items. It can be used with paths & query params, and supports specific path level (depths).

<script lang="ts">
	import { NavRow } from 'omorphia'
</script>

<NavRow
	level={1}
	links={[
		{
			href: '/Button',
			label: 'Button',
		},
		{
			href: '/Chips',
			label: 'Chips',
		},
		{
			href: '/NavRow',
			label: 'NavRow',
		},
	]}>
	Click for fun
</NavRow>