@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) • 369 B
TypeScript
import type { Params as CommonParams, Output as CommonOutput } from "../../primitives/ButtonPrimitive/common/getCommonProps";
interface Props extends CommonParams {
readonly compact?: boolean;
}
interface Output extends CommonOutput {
padding: string;
}
declare const getButtonLinkCommonProps: (props: Props) => Output;
export default getButtonLinkCommonProps;