react-native-feather
Version:
React Native component for Feather icons
11 lines (10 loc) • 479 B
JavaScript
import * as React from "react";
import Svg, { Ellipse, Path } from "react-native-svg";
function SvgDatabase(props) {
return (<Svg width={24} height={24} viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" {...props}>
<Ellipse cx={12} cy={5} rx={9} ry={3}/>
<Path d="M21 12c0 1.66-4 3-9 3s-9-1.34-9-3"/>
<Path d="M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"/>
</Svg>);
}
export default SvgDatabase;