@talend/react-components
Version:
Set of react components.
16 lines • 498 B
JavaScript
import PropTypes from 'prop-types';
import cssModule from '../../ColumnChooser.module.scss';
import { getTheme } from '../../../../../../theme';
import { jsx as _jsx } from "react/jsx-runtime";
const theme = getTheme(cssModule);
const RowLabel = ({
label
}) => /*#__PURE__*/_jsx("span", {
className: theme('tc-column-chooser-row-label'),
children: label
});
RowLabel.propTypes = {
label: PropTypes.string.isRequired
};
export default RowLabel;
//# sourceMappingURL=RowLabel.component.js.map