@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.
16 lines (12 loc) • 305 B
Flow
// @flow
import * as React from "react";
import type { Theme } from "../../../defaultTheme";
import type { Size } from "..";
export type GetPadding = (
onlyIcon: boolean,
iconRight?: React.Node,
iconLeft?: React.Node,
size: Size,
theme: Theme,
) => string;
declare export default GetPadding;