Responsive Variants
Learn how to use responsive variants in Mijn-UI.
By default, Mijn-UI components don't provide responsive variants out of the box because there aren't many cases where you need them. Additionally, you can easily make components responsive by adding Tailwind CSS class names.
This guide will show you how to create responsive variants for your components.
There are two main ways to create responsive variants:
Making Components Responsive Using tailwind-variants
Although you can use tailwind-variants to make components responsive, it has a limitation when it comes to making compound variants responsive. To overcome this limitation, you can use the use-responsive-variants hook.
Configure Tailwind CSS
To make responsive variants work smoothly, you need to wrap the Tailwind config with the withTV
function from tailwind-variants
. You can refer to the tailwind-variants documentation for more details.
Applying Responsive Variants to Component
You can apply the responsive variants to the component like this:
Making Component Responsive Using use-responsive-variants
Hook
Add the following hook file to your project:
Use the Hook in Your Component
By following this guide, you can easily create responsive variants for Mijn-UI components using either tailwind-variants
or the use-responsive-variants
hook. Each approach provides flexibility and ensures your components look great on any screen size.