Design System
The Unkey UI package (@unkey/ui
) is a collection of reusable React components designed for building Unkey applications with consistent styling and behavior. This document explains how to properly integrate and use this package across different Unkey applications.
Setup Requirements
To properly use the @unkey/ui
package in an application, you need to:
- Import the package's CSS styles
- Configure your Tailwind CSS setup correctly
Importing CSS Styles
The most important step when using @unkey/ui
is to import its CSS styles. This can be done by adding the following import to your application's main layout or entry file:
For example, in a Next.js application, you would add this import to your app/layout.tsx
file:
Without this import, components will render with default browser styling rather than Unkey's custom design.
Tailwind Configuration
The UI package leverages Tailwind CSS for styling. To properly use these components, your application's tailwind.config.js
should extend the core configuration:
The UI package provides its own color palette and other design tokens, which will be available to your application once the CSS is imported.
Common Usage Patterns
Importing Components
Import components directly from the package:
Basic Component Usage
Troubleshooting
Components Look Unstyled
If components appear unstyled or with minimal styling, check that you've:
- Imported the CSS file with
import "@unkey/ui/css"
- Configured your Tailwind CSS to include the UI package content
- Ensured you're not overriding the imported styles elsewhere
Conflicting Styles
If you're experiencing conflicting styles:
- Make sure your application's CSS is imported after the UI package CSS
- Check for conflicting class names or global styles in your application
- Use the
className
prop on components to override specific styles when needed
Best Practices
- Import the CSS Once: Only import
@unkey/ui/css
once in your application, typically at the root level - Follow Component Documentation: Refer to each component's documentation for specific props and variants
- Consistent Usage: Use the same component for the same purpose throughout your application
- Avoid Direct Styling: Instead of directly styling UI components, use their provided props and variants