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

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

Neptune

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

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