@semcore/icon
Version:
Semrush Icon Component
27 lines • 1.16 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '../../lib/esm/index.mjs';
function RootTextBold({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "TextBold",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M12.5 4.004a4.5 4.5 0 0 1 3.255 7.604 4.5 4.5 0 0 1-2.255 8.396H7a1 1 0 0 1-1-1v-14a1 1 0 0 1 1-1h5.5Zm-4.5 14h5.5a2.5 2.5 0 0 0 .256-4.987l-.256-.013H8v5Zm0-7h4.5a2.5 2.5 0 0 0 0-5H8v5Z",
clipRule: "evenodd",
shapeRendering: "geometricPrecision"
}));
}
RootTextBold.displayName = 'TextBold';
const TextBold = createBaseComponent(RootTextBold);
export { TextBold as default };