Home Reference Source

src/assets/itemsSvgr/PhotoCornerBottomRightSvgr.js

import * as React from 'react';
import Svg, {Path} from 'react-native-svg';

/**
 * SVGR component depicting a bottom right photo corner.
 * @param {Object} props - Properties
 * @returns {Object} Image of a bottom right photo corner
 */
const PhotoCornerBottomRight = 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 65.36 65.74 0 0 65.74l65.36-.38z"
        />
    </Svg>
);

export default PhotoCornerBottomRight;