@workday/canvas-kit-react
Version:
The parent module that contains all Workday Canvas Kit React components
9 lines (8 loc) • 362 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { createComponent } from '@workday/canvas-kit-react/common';
export const BaseTableFooter = createComponent('tfoot')({
displayName: 'Table.Footer',
Component: ({ children, ...elemProps }, ref, Element) => {
return (_jsx(Element, { ref: ref, ...elemProps, children: children }));
},
});