{
  "mappings": "AAIA,cAAc,iBAAiB;KAqB1B,iBAAiB,SAAS,cAAc,IAAI;AAEjD,OAAO,cAAM,gBAAgB",
  "names": [],
  "sources": [
    "src/icons/DatabaseBackup.tsx"
  ],
  "version": 3,
  "sourcesContent": [
    "// @ts-nocheck\nimport React, { memo } from 'react'\nimport PropTypes from 'prop-types'\nimport type { NamedExoticComponent } from 'react'\nimport type { IconProps } from '@tamagui/helpers-icon'\nimport {\n  Svg,\n  Circle as _Circle,\n  Ellipse,\n  G,\n  LinearGradient,\n  RadialGradient,\n  Line,\n  Path,\n  Polygon,\n  Polyline,\n  Rect,\n  Symbol,\n  Text as _Text,\n  Use,\n  Defs,\n  Stop,\n} from 'react-native-svg'\nimport { themed } from '@tamagui/helpers-icon'\n\ntype IconComponent = (propsIn: IconProps) => JSX.Element\n\nexport const DatabaseBackup: IconComponent = themed(\n  memo(function DatabaseBackup(props: IconProps) {\n    const { color = 'black', size = 24, ...otherProps } = props\n    return (\n      <Svg\n        width={size}\n        height={size}\n        viewBox=\"0 0 24 24\"\n        fill=\"none\"\n        stroke={color}\n        strokeWidth=\"2\"\n        strokeLinecap=\"round\"\n        strokeLinejoin=\"round\"\n        {...otherProps}\n      >\n        <Ellipse cx=\"12\" cy=\"5\" rx=\"9\" ry=\"3\" stroke={color} />\n        <Path d=\"M3 12a9 3 0 0 0 5 2.69\" stroke={color} />\n        <Path d=\"M21 9.3V5\" stroke={color} />\n        <Path d=\"M3 5v14a9 3 0 0 0 6.47 2.88\" stroke={color} />\n        <Path d=\"M12 12v4h4\" stroke={color} />\n        <Path\n          d=\"M13 20a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L12 16\"\n          stroke={color}\n        />\n      </Svg>\n    )\n  })\n)\n"
  ]
}