UNPKG

react-toolbox

Version:
17 lines (13 loc) 400 B
import React from 'react'; import style from './style'; const ListItemContent = ({ caption, legend }) => ( <span className={style.text}> <span className={style.caption}>{caption}</span> <span className={style.legend}>{legend}</span> </span> ); ListItemContent.propTypes = { caption: React.PropTypes.string.isRequired, legend: React.PropTypes.any }; export default ListItemContent;