import PropTypes from 'prop-types'
import React, { memo } from 'react'
import {
Defs,
Ellipse,
G,
Line,
LinearGradient,
Path,
Polygon,
Polyline,
RadialGradient,
Rect,
Stop,
Svg,
Symbol,
Text,
Use,
Circle as _Circle,
} from 'react-native-svg'
import { IconProps } from '../IconProps'
import { themed } from '../themed'
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props
return (
)
}
Icon.displayName = 'Key'
export const Key = memo(themed(Icon))