
      import React, { Component } from 'react';

      export default class CurrencyTwdIcon 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-twd-icon ${this.props.className}`}><path d="M3 11h18v2h-6v6h6v2h-6a2 2 0 0 1-2-2v-6h-2.65l-4.618 8L4 20l4.041-7H3v-2zm2-8h14v2H5V3z"/></svg>
          )
        }
      }