Skip to content

Commit 8043e04

Browse files
committed
Fix: Add OpenFileIcon
Signed-off-by: vr-varad <[email protected]>
1 parent 1e26ba3 commit 8043e04

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

src/icons/Open/OpenFileIcon.tsx

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import PropTypes from 'prop-types';
2+
3+
export const OpenFileIcon = ({ width = 24, height = 24, fill = 'currentColor', ...props }) => (
4+
<svg
5+
xmlns="http://www.w3.org/2000/svg"
6+
width={width}
7+
height={height}
8+
viewBox="0 0 256 256"
9+
fill={fill}
10+
{...props}
11+
>
12+
<path
13+
d="M245,110.64A16,16,0,0,0,232,104H216V88a16,16,0,0,0-16-16H130.67L102.94,51.2a16.14,16.14,0,0,0-9.6-3.2H40A16,16,0,0,0,24,64V208h0a8,8,0,0,0,8,8H211.1a8,8,0,0,0,7.59-5.47l28.49-85.47A16.05,16.05,0,0,0,245,110.64ZM93.34,64,123.2,86.4A8,8,0,0,0,128,88h72v16H69.77a16,16,0,0,0-15.18,10.94L40,158.7V64Z"
14+
fill={fill}
15+
></path>
16+
</svg>
17+
);
18+
19+
OpenFileIcon.propTypes = {
20+
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
21+
height: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
22+
fill: PropTypes.string
23+
};
24+
25+
export default OpenFileIcon;

src/icons/Open/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
import OpenFileIcon from './OpenFileIcon';
12
import OpenIcon from './OpenIcon';
2-
export { OpenIcon };
3+
export { OpenFileIcon, OpenIcon };

0 commit comments

Comments
 (0)