A shadcn-style installer that drops a fully-styled and animated components.
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"
/>
);
}
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