sebikostudio-icons
Version:
A collection of icon components
24 lines • 1.08 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, { forwardRef } from 'react';
export const FontBoldIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "font bold, bold, bold letter, letter, b",
style: style,
width: "20",
height: "20",
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M11.6282 9.5H6.5M11.6282 9.5C12.4939 9.5 13.5 8.5 13.5 7C13.5 7 13.5 4.5 10.5 4.5H6.5V9.5M11.6282 9.5C13.6795 9.5 14.5 11.2938 14.5 12.6481C14.5 14.0025 13.4946 15.5 11.6282 15.5H6.5V9.5",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
})));
export default FontBoldIcon;