Home Reference Source

src/assets/itemsSvgr/PhotoCornerTopLeftSvgr.js

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

/**
 * SVGR component depicting the top left photo corner.
 * @param {Object} props - Properties
 * @returns {Object} Image of a top left photo corner
 */
const PhotoCornerTopLeft = 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="M.38.38 0 65.74 65.74 0 .38.38z"
        />
    </Svg>
);

export default PhotoCornerTopLeft;