@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
8 lines • 789 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import React from 'react';
import { TRStyled } from './tableRow.styled';
const TableRowStandAloneComponent = ({ dataTestId = 'table-row', children, styles, id, active, hoverable = true, role, tabIndex, component, onClick, onKeyDown, onMouseEnter, onMouseLeave, }, ref) => {
return (_jsx(TRStyled, { ref: ref, "data-table-row": true, "$styles": styles, as: component, "data-active": active, "data-hoverable": hoverable, "data-testid": dataTestId, id: id, role: role, tabIndex: tabIndex, onClick: onClick, onKeyDown: onKeyDown, onMouseEnter: onMouseEnter, onMouseLeave: onMouseLeave, children: children }));
};
export const TableRowStandAlone = React.forwardRef(TableRowStandAloneComponent);
//# sourceMappingURL=tableRowStandAlone.js.map