@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.
22 lines (20 loc) • 565 B
JavaScript
import * as React from "react";
import styled from "styled-components";
export const StyledTableRow = styled(({
children,
className,
dataTest
}) => /*#__PURE__*/React.createElement("tr", {
className: className,
"data-test": dataTest
}, children)).withConfig({
displayName: "TableRow__StyledTableRow",
componentId: "sc-13psdp-0"
})(["box-sizing:border-box;width:100%;white-space:nowrap;"]);
const TableRow = ({
dataTest,
children
}) => /*#__PURE__*/React.createElement(StyledTableRow, {
dataTest: dataTest
}, children);
export default TableRow;