UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 713 B
import React, { Component } from 'react'; export default class AmazonClouddriveIcon extends Component { static defaultProps = { className: '' }; constructor(props) { super(props); } render() { return ( <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-amazon-clouddrive-icon ${this.props.className}`}><path d="M4.941 11.118c.286 0 .562.04.824.117a3.882 3.882 0 0 1 7.48-1.463 3.177 3.177 0 0 1 5.614 2.657 2.353 2.353 0 1 1 .789 4.57l-14.707.001a2.941 2.941 0 1 1 0-5.882z"/></svg> ) } }