Skip to content

Commit fc7a5d3

Browse files
committed
Update
Signed-off-by: vr-varad <[email protected]>
1 parent 8043e04 commit fc7a5d3

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

src/icons/Open/OpenFileIcon.tsx

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1-
import PropTypes from 'prop-types';
1+
import { FC } from 'react';
2+
import { DEFAULT_WIDTH } from '../../constants/constants';
3+
import { IconProps } from '../types';
24

3-
export const OpenFileIcon = ({ width = 24, height = 24, fill = 'currentColor', ...props }) => (
5+
export const OpenFileIcon: FC<IconProps> = ({
6+
width = DEFAULT_WIDTH,
7+
height = DEFAULT_WIDTH,
8+
fill = 'currentColor',
9+
...props
10+
}) => (
411
<svg
512
xmlns="http://www.w3.org/2000/svg"
613
width={width}

0 commit comments

Comments
 (0)