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.

11 lines (10 loc) 489 B
/// <reference types="react" /> import type * as Common from "../common/types"; import type { Props } from "./types"; export declare const StyledSeparator: import("styled-components").StyledComponent<"hr", import("styled-components").DefaultTheme, { spaceAfter?: Common.SpaceAfterSizes | undefined; $type: Props["type"]; $color?: Props["color"]; }, never>; declare const Separator: ({ align, indent, spaceAfter, type, color, }: Props) => JSX.Element; export default Separator;