UNPKG

@useloops/design-system

Version:

The official React based Loops design system

17 lines (14 loc) 465 B
import { FunctionComponent } from 'react'; interface StarRatingProps { disabled?: boolean; readOnly?: boolean; onChange?: (event: React.ChangeEvent<{}>, value: number | null) => void; precision?: number; name: string; IconContainerComponent?: any; value?: number | null; internalChange?: () => void; } declare const StarRating: FunctionComponent<StarRatingProps>; export { StarRating as default }; export type { StarRatingProps };