UNPKG

@talend/react-components

Version:
20 lines (19 loc) 670 B
import { defaultColumnConfiguration } from '../Content.component'; import CellWithIcon from './CellWithIcon.component'; import { jsx as _jsx } from "react/jsx-runtime"; export const cellType = 'texticon'; export const textIconColumnConfiguration = { cellRenderer: props => /*#__PURE__*/_jsx(CellWithIcon, { ...props }) }; // this is a fake component to be usable in JSX, // but the element is used as props object internally (VirtualizedList / RV) export default function TextIconColumn() { return null; } TextIconColumn.defaultProps = { ...defaultColumnConfiguration, ...textIconColumnConfiguration }; //# sourceMappingURL=TextIconColumn.component.js.map