Home Reference Source

src/assets/iconsSvgr/SaveIconWhiteSvgr.js

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

/**
 * SVGR component representing the "save" symbol.
 * @param {Object} props - Properties
 * @returns {Object} "Save" symbol
 */
const SaveIconWhiteSvgr = props => (
    <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" {...props}>
        <Path
            style={{
                fill: 'none',
                stroke: '#fff',
                strokeLinecap: 'round',
                strokeMiterlimit: 10,
                strokeWidth: 9,
            }}
            d="M50 11.16v55.18M65.2 51.14 50 66.34M34.8 51.14 50 66.34"
        />
        <Path
            style={{
                fill: 'none',
                stroke: '#fff',
                strokeLinecap: 'round',
                strokeLinejoin: 'round',
                strokeWidth: 9,
            }}
            d="M71.61 30.95h16.94v53.89h-77.1V30.95h16.94"
        />
        <Path
            style={{
                fill: 'none',
            }}
            d="M0 0h100v100H0z"
        />
    </Svg>
);

export default SaveIconWhiteSvgr;