WIP
Typlog UI
Your Accessible Design System
Typlog UI combines Reka UI’s accessibility with Radix Colors’ theming power, so you can focus on building great features — not reinventing components.
vue
<script setup lang="ts">
import { ThemeProvider, Button } from '@typlog/ui'
</script>
<template>
<ThemeProvider>
<Button>Hey 👋</Button>
</ThemeProvider>
</template>
<style>
@import "tailwindcss";
@import "typlog/ui";
</style>