Components
npx shadcn@latest add https://21st.dev/r/shugar/show-more-1Loading preview...
import { useState } from "react";
import { ShowMore } from "@/components/ui/show-more-1";
export default function DefaultDemo() {
const [expanded, setExpanded] = useState(false);
return <ShowMore expanded={expanded} onClick={setExpanded} />;
}