Components
Loading preview...
Vercel-inspired feedback widget with emoji rating scale and expandable text area. Animated spring transitions and markdown support.
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/feedback-widgetimport { FeedbackWidget } from "@/components/ui/feedback-widget"
export default function FeedbackWidgetDemo() {
return (
<div className="flex items-center justify-center min-h-screen bg-background p-8">
<FeedbackWidget
onSubmit={(data) => console.log("Feedback submitted:", data)}
label="Was this helpful?"
placeholder="Share your thoughts..."
/>
</div>
)
}