src/assets/itemsSvgr/PhotoCornerTopRightSvgr.js
import * as React from 'react';
import Svg, {Path} from 'react-native-svg';
/**
* SVGR component depicting the top right photo corner.
* @param {Object} props - Properties
* @returns {Object} Image of a top right photo corner
*/
const PhotoCornerTopRight = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 65.74 65.74"
{...props}>
<Path
style={{
fill: '#b3b3b3',
opacity: 0.3,
}}
d="m65.36.38.38 65.36L0 0l65.36.38z"
/>
</Svg>
);
export default PhotoCornerTopRight;