/* eslint no-unused-vars: 0 */
/* This file is auto-generated, do not touch! Please edit the SVG file instead. */
import React from 'react';

import {
  Svg,
  Circle,
  Ellipse,
  G,
  LinearGradient,
  RadialGradient,
  Line,
  Path,
  Polygon,
  Polyline,
  Rect,
  Symbol,
  Text,
  Use,
  Defs,
  Stop
} from 'mobile/node_modules/react-native-svg';

function Delete({ width, height, style, color = 'black', ...props }) {
  return (
    <Svg
      width={width}
      height={height}
      {...props}
      style={style}
      viewBox="0 0 24 24"
      version="1.1"
      xmlns="http://www.w3.org/2000/svg"
    >
      <Line
        fill="none"
        stroke={color}
        className="path"
        strokeWidth="4"
        strokeLinecap="round"
        strokeMiterlimit="10"
        x1="2"
        y1="2"
        x2="22"
        y2="22"
      />
      <Line
        fill="none"
        stroke={color}
        className="path"
        strokeWidth="4"
        strokeLinecap="round"
        strokeMiterlimit="10"
        x1="22"
        y1="2"
        x2="2"
        y2="22"
      />
    </Svg>
  );
}

export default Delete;