react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 900 B
JSX
import React, { Component } from 'react';
export default class CurrencyKrwIcon 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-currency-krw-icon ${this.props.className}`}><path d="M2 3h2l1.333 6h4l1.334-6h2.666l1.333 6h4L20 3h2l-1.333 6H22v2h-1.778l-.444 2H22v2h-2.667L18 21h-2.667L14 15h-4l-1.333 6H6l-1.333-6H2v-2h2.222l-.444-2H2V9h1.333L2 3zm11.11 8h-2.22l-.445 2h3.11l-.444-2zm-5.777 7L8 15H6.667l.666 3zm1.556-7H5.778l.444 2h2.223l.444-2zm7.777 7l.667-3H16l.666 3zm1.556-7h-3.111l.444 2h2.223l.444-2zM12 6.001L11.334 9h1.332L12 6.001z"/></svg>
)
}
}