@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.
52 lines (49 loc) • 1.24 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
import * as React from "react";
import Svg from "../Svg";
var List = function List(_ref) {
var _ref$height = _ref.height,
height = _ref$height === void 0 ? 80 : _ref$height,
props = _objectWithoutProperties(_ref, ["height"]);
return /*#__PURE__*/React.createElement(Svg, _extends({}, props, {
height: height
}), /*#__PURE__*/React.createElement("rect", {
x: "35",
y: "0",
width: "100%",
height: "20"
}), /*#__PURE__*/React.createElement("rect", {
x: "35",
y: "30",
width: "100%",
height: "20"
}), /*#__PURE__*/React.createElement("rect", {
x: "35",
y: "60",
width: "100%",
height: "20"
}), /*#__PURE__*/React.createElement("rect", {
x: "3",
y: "0",
rx: "4",
ry: "4",
width: "20",
height: "20"
}), /*#__PURE__*/React.createElement("rect", {
x: "3",
y: "30",
rx: "4",
ry: "4",
width: "20",
height: "20"
}), /*#__PURE__*/React.createElement("rect", {
x: "3",
y: "60",
rx: "4",
ry: "4",
width: "20",
height: "20"
}));
};
export default List;