rentypo
Version:
React's components for Entypo+ icons
12 lines (10 loc) • 792 B
JavaScript
import React, { Component } from 'react'
export default class Bell extends Component {
render () {
return (
<svg className={this.props.children} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
<path d="M14.65 8.512c-2.28-4.907-3.466-6.77-7.19-6.693-1.328.02-1.01-.97-2.022-.59-1.01.37-.143.92-1.177 1.77-2.9 2.38-2.63 4.584-1.28 9.84.567 2.21-1.367 2.32-.602 4.462.56 1.563 4.68 2.22 9.026.606 4.347-1.613 7.086-4.814 6.527-6.378-.765-2.146-2.31-.962-3.272-3.028zm-3.726 8.083c-3.882 1.44-7.072.594-7.207.217-.232-.65 1.253-2.816 5.69-4.463 4.44-1.65 6.916-1.04 7.175-.32.153.43-1.775 3.116-5.658 4.557zM9.676 13.1c-2.03.754-3.44 1.615-4.353 2.39.643.584 1.847.726 3.046.28 1.52-.564 2.46-1.865 2.09-2.903l-.02-.036-.77.27z"/>
</svg>
)
}
}