UNPKG

@wonderflow/react-components

Version:

UI components from Wonderflow's Wanda design system

4 lines (3 loc) 335 B
import { jsx as _jsx } from "react/jsx-runtime"; import * as styles from './table-expand.module.css'; export const TableExpand = ({ data, component: Component, }) => (_jsx("div", { className: styles.TableExpand, children: _jsx("div", { className: styles.ExpandContent, children: Component ? _jsx(Component, { ...data }) : null }) }));