UNPKG

@redocly/theme

Version:

Shared UI components lib

9 lines (8 loc) 242 B
import type { JSX } from 'react'; export type StarsProps = { max?: number; name?: string; value?: number; onChange: (value: number) => void; }; export declare function Stars({ max, onChange, value }: StarsProps): JSX.Element;