UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 967 B
import React, { Component } from 'react'; export default class AutoFixIcon 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-auto-fix-icon ${this.props.className}`}><path d="M7.5 5.598L5 6.998l1.4-2.5-1.4-2.5 2.5 1.4 2.5-1.4-1.4 2.5 1.4 2.5-2.5-1.4zm12 9.8l2.5-1.4-1.4 2.5 1.4 2.5-2.5-1.4-2.5 1.4 1.4-2.5-1.4-2.5 2.5 1.4zm2.5-13.4l-1.4 2.5 1.4 2.5-2.5-1.4-2.5 1.4 1.4-2.5-1.4-2.5 2.5 1.4 2.5-1.4zm-8.658 10.778l2.435-2.435-2.12-2.122-2.436 2.436 2.121 2.121zm1.028-5.485l2.336 2.336a.999.999 0 0 1 0 1.414L5.042 22.705a1 1 0 0 1-1.414 0L1.292 20.37a.999.999 0 0 1 0-1.414L12.956 7.291a.999.999 0 0 1 1.414 0z"/></svg> ) } }