diff --git a/native/vectors/restore-icon.react.js b/native/vectors/restore-icon.react.js index 51dca1cd0..0c788b588 100644 --- a/native/vectors/restore-icon.react.js +++ b/native/vectors/restore-icon.react.js @@ -1,43 +1,42 @@ // @flow import * as React from 'react'; import { Svg, Path } from 'react-native-svg'; type Props = { +color?: string, }; function RestoreIcon(props: Props): React.Node { const color = props.color ?? '#373737'; - console.log(color); return ( ); } export default RestoreIcon;