import { Gridicon } from '@automattic/components'; import PropTypes from 'prop-types'; const LikeIcons = ( { size } ) => ( ); LikeIcons.propTypes = { size: PropTypes.number, }; LikeIcons.defaultProps = { size: 24, }; export default LikeIcons;