Components
Loading preview...
Interactive tabs animated using clip path and framer motion
npx shadcn@latest add https://21st.dev/r/preetsuthar17/animated-tabsimport { AnimatedTabs } from "@/components/ui/animated-tabs"
const Demo = () => {
return (
<>
<AnimatedTabs
tabs={[
{ label: "Home" },
{ label: "About" },
{ label: "Resources" },
{ label: "Docs" },
{ label: "Support" },
]}
/>;
</>
)
}
export {Demo }