Rating
@editora/ui-react does not currently export a dedicated Rating component.
If you need this pattern today:
- use
Sliderfor editable score input - use
Meterfor read-only score display
Editable Alternative
import { Slider } from '@editora/ui-react';
function ScoreInput() {
return <Slider min={0} max={5} step={1} value={4} showValue format="value" label="Rating" />;
}
Read-only Alternative
import { Meter } from '@editora/ui-react';
function ScoreDisplay() {
return <Meter value={4} min={0} max={5} />;
}