react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 1.41 kB
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class MdConfirmationNumber extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m21.64 14.14v-3.283333333333333h-3.2833333333333314v3.283333333333333h3.2833333333333314z m0 7.5v-3.2833333333333314h-3.2833333333333314v3.2833333333333314h3.2833333333333314z m0 7.5v-3.2833333333333314h-3.2833333333333314v3.2833333333333314h3.2833333333333314z m15-12.5q-1.3283333333333331 0-2.3049999999999997 1.0166666666666657t-0.9750000000000014 2.3416666666666686 0.9766666666666666 2.3416666666666686 2.306666666666665 1.0166666666666657v6.638333333333335q0 1.3283333333333331-0.9766666666666666 2.3433333333333337t-2.3049999999999997 1.0166666666666657h-26.72q-1.3299999999999992 0-2.3066666666666658-1.0166666666666657t-0.9750000000000001-2.3433333333333337v-6.640000000000001q1.4066666666666667 0 2.3433333333333333-0.9766666666666666t0.9399999999999995-2.383333333333333q0-1.3283333333333331-0.9766666666666666-2.3433333333333337t-2.305-1.0166666666666657v-6.635000000000005q0-1.4083333333333332 0.976666666666667-2.383333333333333t2.3066666666666666-0.9783333333333335h26.716666666666665q1.3299999999999983 0 2.306666666666665 0.9766666666666666t0.9716666666666782 2.385v6.638333333333335z"/></g>
</IconBase>
);
}
}