UNPKG

@kiwicom/orbit-components

Version:

<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"

18 lines (15 loc) 446 B
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" })(["box-sizing:border-box;width:100%;white-space:nowrap;"]); const TableRow = props => React.createElement( StyledTableRow, null, props.children ); export default TableRow;