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.

12 lines (11 loc) 742 B
/// <reference types="react" /> import { ICON_COLORS } from "../../Icon/consts"; import type { Props, Type } from "./types"; export declare const getIconColor: (type: Type) => "info" | "success" | "warning" | "critical" | ICON_COLORS.SECONDARY; export declare const StyledBadgeListItem: import("styled-components").StyledComponent<"li", any, {}, never>; export declare const StyledVerticalBadge: import("styled-components").StyledComponent<"div", any, { $type?: Props["type"]; }, never>; export declare const StyledBadgeContent: import("styled-components").StyledComponent<"div", any, {}, never>; declare const BadgeListItem: ({ icon, strikeThrough, type, size, dataTest, children, }: Props) => JSX.Element; export default BadgeListItem;