// @flow /* DOCUMENTATION: https://orbit.kiwi/primitives/badgePrimitive/ */ import * as React from "react"; import type { StyledComponent } from "styled-components"; import type { Carrier } from "../../CarrierLogo"; import type { Globals } from "../../common/common.js.flow"; export type Props = {| +children?: React.Node, +icon?: React.Node, +carriers?: Carrier[], +ariaLabel?: string, +background?: ?string, +foregroundColor?: ?string, +borderColor?: ?string, ...Globals, |}; declare export var StyledBadge: StyledComponent; declare export default React.ComponentType;