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.

10 lines (9 loc) 337 B
import * as React from "react"; import type { Type, Size } from "../types"; interface Props { type?: Type; size?: Size; } export declare const StyledCirclePath: import("styled-components").StyledComponent<"path", any, {}, never>; declare const SeatCircle: ({ size, type }: Props) => React.JSX.Element; export default SeatCircle;