UNPKG

@kiwicom/orbit-components

Version:

Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.

17 lines (14 loc) 356 B
// @flow /* DOCUMENTATION: https://orbit.kiwi/components/ratingstars/ */ import type { Globals } from "../common/common.js.flow"; import type { Size } from "../Icon"; export type Props = { +rating: number, +size?: Size, +color?: "primary" | "secondary", +showEmpty?: boolean, ...Globals, }; declare export default React$ComponentType<Props>;