Skip to content

qedrohenrique/ui

Repository files navigation

UI

A shadcn-style installer that drops a fully-styled and animated components.

Quick start

For example, imagine you want to use the MultiSelectAnimated component, you would:

# add the component to the current folder (default)
npx @qedrohenrique/create-multi-select-animated@latest

# target a different folder
npx @qedrohenrique/create-multi-select-animated@latest --path ./apps/web

You can use it as:

import MultiSelectAnimated from "@/components/multi-select-animated";

export default function Example() {
  return (
    <MultiSelectAnimated
      options={[
        { id: 1, content: "JavaScript" },
        { id: 2, content: "Go" },
      ]}
      placeholder="Select technologies"
    />
  );
}

Contributing

Clone this repo and open a Pull Request:

git clone https://github.com/your-user/multiselect-animated.git
cd multiselect-animated
npm install
npm run dev

Pedro Henrique de Almeida © 2025 - All rights reserved

About

Some components built with shadcn/ui and motion.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published