@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.
39 lines (36 loc) • 821 B
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import * as React from "react";
import Svg from "../Svg";
var Text = function Text(_ref) {
var props = _extends({}, _ref);
return /*#__PURE__*/React.createElement(Svg, props, /*#__PURE__*/React.createElement("rect", {
x: "0",
y: "0",
rx: "3",
ry: "3",
width: "40%",
height: "21px"
}), /*#__PURE__*/React.createElement("rect", {
x: "0",
y: "29px",
rx: "3",
ry: "3",
width: "100%",
height: "21px"
}), /*#__PURE__*/React.createElement("rect", {
x: "0",
y: "58px",
rx: "3",
ry: "3",
width: "100%",
height: "21px"
}), /*#__PURE__*/React.createElement("rect", {
x: "0",
y: "87px",
rx: "3",
ry: "3",
width: "100%",
height: "21px"
}));
};
export default Text;