UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 706 B
import React, { Component } from 'react'; export default class ShuffleVariantIcon 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-shuffle-variant-icon ${this.props.className}`}><path d="M17 3l5.25 4.5L17 12l5.25 4.5L17 21v-3h-2.743l-2.818-2.818 2.122-2.121L15.5 15H17V9h-1.5l-9 9H2v-3h3.257l9-9H17V3zM2 6h4.5l2.818 2.818-2.121 2.121L5.257 9H2V6z"/></svg> ) } }