import React from 'react'; import PropTypes from 'prop-types'; import faker from 'faker/locale/en_US'; import { Media, Button } from 'reactstrap'; const Attachment = (props) => (
{ faker.system.fileName() }
by { faker.name.firstName() } { faker.name.firstName() } ยท { faker.finance.amount() } Kb
04-Oct-2012
05:20 PM
) Attachment.propTypes = { mediaClassName: PropTypes.node, icon: PropTypes.node, iconClassName: PropTypes.node, BgIcon: PropTypes.node, BgIconClassName: PropTypes.node }; Attachment.defaultProps = { mediaClassName: "", icon: "question", iconClassName: "text-white", BgIcon: "square", BgIconClassName: "text-muted" }; export { Attachment };