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.

18 lines (14 loc) 372 B
// @flow /* DOCUMENTATION: https://orbit.kiwi/components/notificationbadge/ */ import type { Globals } from "../common/common.js.flow"; import type { Type } from "../Badge/index.js.flow"; export type Props = {| +children?: React$Node, +type?: Type, +icon?: React$Node, +ariaLabel?: string, ...Globals, |}; declare export default React$ComponentType<Props>;