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