import React from "react"; import PropTypes from "prop-types"; function LightFooterC(props) { return ( ); } LightFooterC.defaultProps = { theme: 'indigo' }; LightFooterC.propTypes = { theme: PropTypes.string.isRequired }; export default LightFooterC;