Fixed linting errors and warnings
This commit is contained in:
@ -2,8 +2,14 @@ import React from 'react';
|
||||
|
||||
import styles from './MoreIcon.scss';
|
||||
|
||||
const MoreIcon = props => {
|
||||
return <img src={require('./assets/more.svg')} className={styles.icon} />;
|
||||
const MoreIcon = () => {
|
||||
return (
|
||||
<img
|
||||
alt="More"
|
||||
src={require('./assets/more.svg')}
|
||||
className={styles.icon}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export default MoreIcon;
|
||||
|
Reference in New Issue
Block a user