Skip to content

Commit 8249dfa

Browse files
author
Victor George
committed
minor lint fix
1 parent bd5be31 commit 8249dfa

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

components/Icons/IconArrowPriorityHigh.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ const IconArrowPriorityHigh = (props) => {
1515

1616
IconArrowPriorityHigh.propTypes = {
1717
fill : React.PropTypes.string,
18-
stroke : React.PropTypes.string,
1918
height : React.PropTypes.number,
2019
width : React.PropTypes.number
2120
}

components/Icons/IconArrowPriorityLow.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ const IconArrowPriorityLow = (props) => {
77

88
return (
99
<svg xmlns="http://www.w3.org/2000/svg" height={height} width={width} viewBox="0 0 16 16" aria-labelledby="title">
10-
<title id="title">IconArrowPriorityLow</title><path fill="#222221" d="M11 2h5v2h-5zM11 6h5v2h-5zM11 10h5v2h-5zM5 12v3l4-4-4-4v3c-1.654 0-3-1.346-3-3s1.346-3 3-3h4V2H5C2.243 2 0 4.243 0 7s2.243 5 5 5z"/></svg>
10+
<title id="title">IconArrowPriorityLow</title>
11+
<path fill={fill} d="M11 2h5v2h-5zM11 6h5v2h-5zM11 10h5v2h-5zM5 12v3l4-4-4-4v3c-1.654 0-3-1.346-3-3s1.346-3 3-3h4V2H5C2.243 2 0 4.243 0 7s2.243 5 5 5z"/></svg>
1112
)
1213
}
1314

1415
IconArrowPriorityLow.propTypes = {
1516
fill : React.PropTypes.string,
16-
stroke : React.PropTypes.string,
1717
height : React.PropTypes.number,
1818
width : React.PropTypes.number
1919
}

0 commit comments

Comments
 (0)