UNPKG

@workday/canvas-kit-react

Version:

The parent module that contains all Workday Canvas Kit React components

9 lines (8 loc) 353 B
import { jsx as _jsx } from "react/jsx-runtime"; import { createComponent } from '@workday/canvas-kit-react/common'; export const BaseTableRow = createComponent('tr')({ displayName: 'Table.Row', Component: ({ children, ...elemProps }, ref, Element) => { return (_jsx(Element, { ref: ref, ...elemProps, children: children })); }, });