import React from "react"; import PropTypes from "prop-types"; function LightFeatureD(props) { return (

Shooting Stars

Blue bottle crucifix vinyl post-ironic four dollar toast vegan taxidermy. Gastropub indxgo juice poutine.

Learn More

The Catalyzer

Blue bottle crucifix vinyl post-ironic four dollar toast vegan taxidermy. Gastropub indxgo juice poutine.

Learn More
); } LightFeatureD.defaultProps = { theme: 'indigo' }; LightFeatureD.propTypes = { theme: PropTypes.string.isRequired }; export default LightFeatureD;