UNPKG

@zohodesk/dot

Version:

In this Library, we Provide Some Basic Components to Build Your Application

32 lines (31 loc) 1.25 kB
import React from 'react'; import { PlusIcon_defaultProps } from "./props/defaultProps"; import { PlusIcon_propTypes } from "./props/propTypes"; import SVG from '@zohodesk/svg/lib/SVG/SVG'; export default class PlusIcon extends React.Component { render() { let { isRender, isSymbol, className } = this.props; return /*#__PURE__*/React.createElement(SVG, { viewBox: "0 0 32 32", name: "PlusIcon", isRender: isRender, isSymbol: isSymbol, className: className }, /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("path", { style: { fill: '#767d89' }, d: "M16,2.7c0.4,0,0.7,0.1,0.9,0.4s0.4,0.6,0.4,0.9v10.7H28c0.4,0,0.7,0.1,0.9,0.4c0.3,0.3,0.4,0.6,0.4,0.9 c0,0.4-0.1,0.7-0.4,0.9c-0.3,0.3-0.6,0.4-0.9,0.4H17.3V28c0,0.4-0.1,0.7-0.4,0.9c-0.3,0.3-0.6,0.4-0.9,0.4c-0.4,0-0.7-0.1-0.9-0.4 c-0.3-0.3-0.4-0.6-0.4-0.9V17.3H4c-0.4,0-0.7-0.1-0.9-0.4S2.7,16.4,2.7,16s0.1-0.7,0.4-0.9c0.3-0.3,0.6-0.4,0.9-0.4h10.7V4 c0-0.4,0.1-0.7,0.4-0.9C15.3,2.8,15.6,2.7,16,2.7z" }))); } } PlusIcon.propTypes = PlusIcon_propTypes; PlusIcon.defaultProps = PlusIcon_defaultProps; // if (__DOCS__) { // PlusIcon.docs = { // componentGroup: 'SVG' // }; // }