@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.
19 lines • 417 B
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import * as React from "react";
import Svg from "../Svg";
const Button = ({
height = 44,
rowHeight = 44,
width = 150,
...props
}) => {
return /*#__PURE__*/React.createElement(Svg, _extends({
rows: 1,
height: height,
width: width,
rowHeight: rowHeight,
rowBorderRadius: 6,
rowOffset: 0
}, props));
};
export default Button;