rentypo
Version:
React's components for Entypo+ icons
12 lines (10 loc) • 733 B
JavaScript
import React, { Component } from 'react'
export default class Database extends Component {
render () {
return (
<svg className={this.props.className} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
<path d="M16.726 12.64c-.843 1.364-3.535 2.362-6.726 2.362-3.19 0-5.883-.998-6.727-2.36-.178-.29-.273-.136-.273.006v2.002c0 1.94 3.134 3.95 7 3.95s7-2.01 7-3.95v-2c0-.144-.096-.3-.274-.01zm.01-5.115c-.83 1.205-3.53 2.09-6.736 2.09-3.205 0-5.908-.885-6.738-2.09C3.092 7.277 3 7.412 3 7.523V9.88c0 1.762 3.134 3.19 7 3.19s7-1.43 7-3.19V7.523c0-.11-.092-.246-.263.002zM10 1C6.134 1 3 2.18 3 3.633v1.26c0 1.54 3.134 2.79 7 2.79s7-1.25 7-2.79v-1.26C17 2.18 13.866 1 10 1z"/>
</svg>
)
}
}