import React from 'react'; import PropTypes from 'prop-types'; import faker from 'faker/locale/en_US'; import { Media, } from './../../../components'; const Activity = (props) => ( { faker.name.firstName() } { faker.name.lastName() } changed Description to "{ faker.random.words() }"

{ faker.lorem.sentence() }

{ faker.date.past().toString() }
) Activity.propTypes = { iconColorBelow: PropTypes.node, iconBelow: PropTypes.node, iconColor: PropTypes.node, icon: PropTypes.node }; Activity.defaultProps = { iconColorBelow: "muted", iconBelow: "circle", iconColor: "white", icon: "question", }; export { Activity };