@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.
15 lines (13 loc) • 462 B
JavaScript
import * as React from "react";
import styled from "styled-components";
export const StyledTableRow = styled(({
children,
className
}) => React.createElement("tr", {
className: className
}, children)).withConfig({
displayName: "TableRow__StyledTableRow",
componentId: "nnt9s9-0"
})(["box-sizing:border-box;width:100%;white-space:nowrap;"]);
const TableRow = props => React.createElement(StyledTableRow, null, props.children);
export default TableRow;