@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.
11 lines (9 loc) • 390 B
JavaScript
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
import getCommonProps from "../../primitives/ButtonPrimitive/common/getCommonProps";
const getButtonLinkCommonProps = props => {
if (!props.compact) return getCommonProps(props);
return _objectSpread(_objectSpread({}, getCommonProps(props)), {}, {
padding: "0"
});
};
export default getButtonLinkCommonProps;