unstyled components
for the rest of us

Unstyled and accessible primitives build for Svelte. use bind:value, snippets, and ui prop without the style of sub-components.

<script>
	import { Tabs } from 'uisv';
</script>

<Tabs items={['overview', 'setting']}>
	{#snippet content_1()}
		Settings content
	{/snippet}
</Tabs>

{#snippet content_0()}
	Overview content
{/snippet}