react-toolbox-legacy
Version:
Unofficial fork of the react-toolbox package, compatible with React v16
32 lines (27 loc) • 813 B
JavaScript
import React from 'react';
import PropTypes from 'prop-types';
import classnames from 'classnames';
import { themr } from 'react-css-themr-legacy';
import { LIST } from '../identifiers.js';
const ListItemText = ({className, primary, children, theme, ...other}) => {
const _className = classnames(theme.itemText, {[theme.primary]: primary}, className);
return (
<span data-react-toolbox="list-item-text" className={_className} {...other}>
{children}
</span>
);
};
ListItemText.propTypes = {
children: PropTypes.any,
className: PropTypes.string,
primary: PropTypes.bool,
theme: PropTypes.shape({
itemText: PropTypes.string,
primary: PropTypes.string
})
};
ListItemText.defaultProps = {
primary: false
};
export default themr(LIST)(ListItemText);
export { ListItemText };