<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Amin Khadivar</title>
    <description>The latest articles on DEV Community by Amin Khadivar (@aminkhadivar).</description>
    <link>https://dev.to/aminkhadivar</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3310765%2F6ef0ee7c-080f-4d4b-93ef-fda91170a542.png</url>
      <title>DEV Community: Amin Khadivar</title>
      <link>https://dev.to/aminkhadivar</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/aminkhadivar"/>
    <language>en</language>
    <item>
      <title>A Minimal UI Component Kit for React, Tailwind CSS v4 - Setxo-React npm package</title>
      <dc:creator>Amin Khadivar</dc:creator>
      <pubDate>Mon, 30 Jun 2025 22:59:32 +0000</pubDate>
      <link>https://dev.to/aminkhadivar/a-minimal-ui-component-kit-for-react-tailwind-css-v4-setxo-react-npm-package-2no0</link>
      <guid>https://dev.to/aminkhadivar/a-minimal-ui-component-kit-for-react-tailwind-css-v4-setxo-react-npm-package-2no0</guid>
      <description>&lt;p&gt;As a full-stack developer, I often faced the same frustrations when building UIs in React:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Headless libraries that require too much wiring

UI kits bloated with styles I didn’t need

Awkward integration between Tailwind CSS and React transitions
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;So I decided to build my own: Setxo — a lightweight, unstyled, and fully customizable component library powered by Tailwind CSS and Framer Motion.&lt;/p&gt;

&lt;p&gt;Setxo is not another UI kit with predefined themes or hundreds of props. It gives you complete control over the look and behavior of your components — while still offering smooth interactions and sensible defaults.&lt;/p&gt;

&lt;p&gt;🎯 Why Setxo?&lt;/p&gt;

&lt;p&gt;Here’s what makes Setxo stand out:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;🛠️ Built with Tailwind CSS v4 in mind

🎞️ Framer Motion used for all transitions and animations

📦 Tree-shakable and lightweight bundle size

🎯 Fully controlled components

🧩 Common UI patterns like Modal, Drawer, Tabs, Popover, Tooltip, Dropdown, Accordion

💅 Unstyled by default — style it your way
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Setxo is perfect for developers who don’t want to sacrifice control just to save a few hours on UI boilerplate.&lt;br&gt;
🧪 Example Usage&lt;/p&gt;

&lt;p&gt;Let’s look at a simple example with the Drawer component:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import { Drawer , Button } from 'setxo-react'

export default function Example() {

  return (
    &amp;lt;Drawer
     id="topDrawer"
     placement="top"
     width="w-full"
     title="Top Drawer"
     trigger={
      &amp;lt;Button color="primary"&amp;gt;Show top drawer&amp;lt;/Button&amp;gt;
     }
     content={
      &amp;lt;&amp;gt;
       &amp;lt;p&amp;gt;
        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Eget dolor morbi non arcu. Et odio pellentesque diam volutpat commodo sed. Quam quisque id diam vel quam. Vel quam elementum pulvinar etiam non. Lacus vestibulum sed arcu non odio euismod lacinia at quis. Venenatis lectus magna fringilla urna porttitor. Vulputate odio ut enim blandit volutpat maecenas. Aenean sed adipiscing diam donec adipiscing tristique. Pretium nibh ipsum consequat nisl. Semper viverra nam libero justo laoreet sit amet cursus sit.
      &amp;lt;/p&amp;gt;
      &amp;lt;div className="sm:flex grid"&amp;gt;
       &amp;lt;Button color="primary"&amp;gt;Call to action&amp;lt;/Button&amp;gt;
      &amp;lt;/div&amp;gt;
     &amp;lt;/&amp;gt;
    }
   /&amp;gt;
  )
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;All components are headless and unstyled — built to blend perfectly with your Tailwind setup.&lt;br&gt;
📚 What’s Included?&lt;/p&gt;

&lt;p&gt;Current list of components:&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Accordion , Alert , Avatar , Badge , Breadcrumb , Button , Carousel , CloseButton , Collapse , Drawer , Dropdown , Modal , Nav , Navbar Pagination , Popover , Progress , Spinner , Tab , Tooltip , Divider , Image , Links , List , Table , Typography , Forms , Checkbox , FormControl , Radio , Range , Select , Switch , DarkModeToggle , 

…and more coming soon!
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;p&gt;You can check the full documentation here:&lt;br&gt;
👉 [&lt;a href="https://setxo.com" rel="noopener noreferrer"&gt;https://setxo.com&lt;/a&gt; (🌍 Live Demo)]&lt;/p&gt;

&lt;p&gt;After years of freelance work and building dashboards, admin panels, and full websites, I realized I was repeating myself — copy/pasting similar component logic again and again.&lt;/p&gt;

&lt;p&gt;Setxo is a product of that repetition — distilled into a clean, reusable kit with animations and developer experience in mind.&lt;br&gt;
🧭 Roadmap&lt;/p&gt;

&lt;p&gt;Here’s what’s coming soon to Setxo:&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Dark mode support

Accessibility improvements (ARIA roles &amp;amp; keyboard nav)

Storybook UI explorer

Example templates

JavaScript improvements
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;p&gt;🤝 Contribute&lt;/p&gt;

&lt;p&gt;I’d love your feedback or suggestions!&lt;/p&gt;

&lt;p&gt;Whether it’s bug reports, pull requests, or just a ⭐ star on GitHub, it means a lot — especially for open-source devs working from underrepresented regions.&lt;/p&gt;

&lt;p&gt;[GitHub: &lt;a href="https://github.com/aminkhadivar/setxo-react" rel="noopener noreferrer"&gt;https://github.com/aminkhadivar/setxo-react&lt;/a&gt;]&lt;/p&gt;

&lt;p&gt;👨‍💻 About Me&lt;/p&gt;

&lt;p&gt;I’m Amin Khadivar, a full-stack React + Laravel developer from Iran 🇮🇷, working freelance for over 7 years. Setxo is my attempt at giving back to the dev community and making UI building a little smoother.&lt;/p&gt;

&lt;p&gt;👉 Documentation: [&lt;a href="https://setxo.com" rel="noopener noreferrer"&gt;https://setxo.com&lt;/a&gt;]&lt;br&gt;
👉 Package: [&lt;a href="https://www.npmjs.com/package/setxo-react" rel="noopener noreferrer"&gt;https://www.npmjs.com/package/setxo-react&lt;/a&gt;]&lt;/p&gt;

&lt;p&gt;🙏 Final Words&lt;/p&gt;

&lt;p&gt;If you’ve ever wanted a modern, lightweight, and fully customizable UI component kit that respects your Tailwind setup — Setxo is built for you.&lt;/p&gt;

&lt;p&gt;Try it. Fork it. Contribute. Or just drop me a note — I’d love to hear from you.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;npm install setxo-react
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>react</category>
      <category>tailwindcss</category>
      <category>npm</category>
      <category>javascript</category>
    </item>
  </channel>
</rss>
