{/* Read-only rating display */}
{/* Editable rating input */}
Your Rating
{
setUserRating(rating)
console.log("User rated:", rating)
}}
/>
{/* Small compact rating */}
(128 reviews)
)
}
```
--------------------------------
### Stepper Usage
Source: https://github.com/keenthemes/reui/blob/main/content/docs/components/radix/stepper.mdx
Example of how to import and use the Stepper component in your React application.
```APIDOC
## Usage
### Importing Components
```tsx
import {
Stepper,
StepperContent,
StepperIndicator,
StepperItem,
StepperNav,
StepperPanel,
StepperSeparator,
StepperTrigger,
} from "@/components/reui/stepper"
```
### Basic Stepper Example
```tsx