Rate

A rating indicates user interest in content.

  • <Rate>

Usage

import { Rate } from 'rsuite';

Examples

Default

Sizes

The size of the rate component

Color

The color of the rate component

Half ratings

Vertical direction

direction when half select

Hover feedback

Disabled

Readonly

Characters

You can use other icons, emoji, numbers, Chinese or other custom patterns

Customized rates

When there are multiple levels of rating, you can customize the character displayed at each level, but you need to implement this yourself

Props

Property Type (Default) Description
allowHalf boolean(false) Whether to support half option
character React.ReactNode custom character
cleanable boolean(true) Whether clear is supported
defaultValue number(0) Default value
disabled boolean(false) Disabled,Cannot interact when value is true
max number(5) Maximum score
renderCharacter (value: number) => React.ReactNode Customize the render character function
readOnly boolean Whether it is read-only, if true, no interaction is possible
size enum: 'lg', 'md', 'sm', 'xs' ('md') Set component size
color enum: 'red', 'orange','yellow', 'green',
'cyan', 'blue', 'violet'
A button can have different colors
value number Value (Controlled)
vertical boolean(false) direction when half select
onChange (value: ValueType, event: React.SyntheticEvent) => void Callback function that changes value
onChangeActive (value: number, event: React.SyntheticEvent) => void Callback function that is fired when the hover state changes.
🎉 v5 is released! Head to the v5 documentation to get started.