A comprehensive UI component library that brings the beautiful design system of RetroUI to the Svelte ecosystem.
Important: RetroUI Svelte requires shadcn-svelte to be installed and configured in your project.
# Install components
npx shadcn-svelte@latest add https://retroui-svelte.netlify.app/r/button.json
npx shadcn-svelte@latest add https://retroui-svelte.netlify.app/r/input.json
npx shadcn-svelte@latest add https://retroui-svelte.netlify.app/r/card.json
<script>
import { Button } from '$lib/components/ui/button';
import { Card, CardContent, CardHeader, CardTitle } from '$lib/components/ui/card';
</script>
<Card class="w-96">
<CardHeader>
<CardTitle>Welcome to RetroUI</CardTitle>
</CardHeader>
<CardContent>
<Button>Get Started</Button>
</CardContent>
</Card>
We welcome contributions! Please see our Contributing Guide for details.
This project is licensed under the MIT License - see the LICENSE file for details.