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) 331 B
/// <reference types="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) => JSX.Element; export default SeatCircle;