react95
Version:
Refreshed Windows95 UI components for modern web apps - React95
13 lines (10 loc) • 394 B
JavaScript
import React__default, { forwardRef } from 'react';
import styled from 'styled-components';
const StyledTd = styled.td`
padding: 0 8px;
`;
const TableDataCell = forwardRef(function TableDataCell2({ children, ...otherProps }, ref) {
return React__default.createElement(StyledTd, { ref, ...otherProps }, children);
});
TableDataCell.displayName = "TableDataCell";
export { TableDataCell };