@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.
14 lines (13 loc) • 380 B
TypeScript
import type { Globals } from "../../common/types";
import type { Size, Color } from "../types";
interface Props extends Globals {
size?: Size;
color?: Color;
className?: string;
customColor?: string;
ariaHidden?: boolean;
reverseOnRtl?: boolean;
ariaLabel?: string;
}
declare const whiteListProps: (props: Props) => any;
export default whiteListProps;