Custom Shadcn Rating for React and Tailwind CSS. A customizable star rating component that supports read-only display and interactive input modes.
Browse 9 production-ready Shadcn Rating components for dashboards, forms, and product UI. These examples follow the Radix UI implementation with accessible primitives from the Radix stack and stay fully compatible with Shadcn Create so radius, color, and typography match your configured theme.
Browse all 9 Shadcn Rating components for copy-ready layouts, dashboards, and forms built with Tailwind CSS in the ReUI library.
import { Rating } from "@/components/reui/rating"<Rating rating={4.5} showValue editable />The main component for displaying and editing star ratings.
import { Rating } from "@/components/reui/rating"
export function Pattern() {
return <Rating rating={4} />
}