Components
Loading preview...
Here is profile dropdown component
@arihantcodes_1f7b8c4d
npx shadcn@latest add https://21st.dev/r/arihantcodes_1f7b8c4d/profile-dropdown// This is a demo of a preview
import { Component } from "@/components/ui/profile-dropdown";
const DemoComponent = () => {
return (
<div className="flex w-full h-screen justify-center items-center">
<Component />
</div>
);
};
export default DemoComponent;