@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) • 319 B
TypeScript
import * as React from "react";
import { ICON_SIZES } from "./consts";
import type { GetSize, FactoryProps } from "./types";
export declare const getSize: GetSize;
declare const OrbitIcon: {
(props: FactoryProps): React.JSX.Element;
defaultProps: {
size: ICON_SIZES;
};
};
export default OrbitIcon;