UNPKG

react95

Version:

Refreshed Windows95 UI components for modern web apps - React95

13 lines (10 loc) 404 B
import React__default, { forwardRef } from 'react'; import styled from 'styled-components'; const StyledTableHead = styled.thead` display: table-header-group; `; const TableHead = forwardRef(function TableHead2({ children, ...otherProps }, ref) { return React__default.createElement(StyledTableHead, { ref, ...otherProps }, children); }); TableHead.displayName = "TableHead"; export { TableHead };