UNPKG

@codementor/ui-kit

Version:
50 lines (42 loc) 1.66 kB
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.PostsSvg = undefined; var _react = require('react'); var _react2 = _interopRequireDefault(_react); var _createIcon = require('../hoc/createIcon'); var _createIcon2 = _interopRequireDefault(_createIcon); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } var PostsSvg = function PostsSvg(props) { return _react2.default.createElement( 'svg', props, _react2.default.createElement( 'g', { fill: 'none', fillRule: 'evenodd' }, _react2.default.createElement('path', { d: 'M0 0h24v24H0z' }), _react2.default.createElement('path', { fill: '#000', fillRule: 'nonzero', d: 'M8.8 2h9.4A2.8 2.8 0 0 1 21 4.8v11.4a2.8 2.8 0 0 1-2.8 2.8H7.4A1.4 1.4 0 0 1 6 17.6V4.8A2.8 2.8 0 0 1 8.8 2zm0 1.4a1.4 1.4 0 0 0-1.4 1.4v12.8h10.8a1.4 1.4 0 0 0 1.4-1.4V4.8a1.4 1.4 0 0 0-1.4-1.4H8.8zM9.7 5h7.6a.7.7 0 0 1 .7.7v3.6a.7.7 0 0 1-.7.7H9.7a.7.7 0 0 1-.7-.7V5.7a.7.7 0 0 1 .7-.7zm.5 3.8h6.6V6.2h-6.6v2.6zM9 12.6v-1.2h9v1.2H9zm0 2.5v-1.2h6v1.2H9zm9.2 3.9c.28 0 .545-.054.8-.13v.33a2.8 2.8 0 0 1-2.8 2.8H5.8A2.8 2.8 0 0 1 3 19.2V6.8A2.8 2.8 0 0 1 5.8 4h.33c-.076.255-.13.52-.13.8v.6h-.2a1.4 1.4 0 0 0-1.4 1.4v12.4a1.4 1.4 0 0 0 1.4 1.4h10.4a1.4 1.4 0 0 0 1.4-1.4V19h.6z' }) ) ); }; PostsSvg.defaultProps = { xmlns: 'http://www.w3.org/2000/svg', width: '24', height: '24', viewBox: '0 0 24 24' }; exports.default = (0, _createIcon2.default)({ SvgComponent: PostsSvg, displayName: 'PostsIcon' }); exports.PostsSvg = PostsSvg;