UNPKG

sebikostudio-icons

Version:
12 lines (7 loc) 695 B
import React, { forwardRef } from 'react'; export const FontBoldIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg 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}> <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"/> </svg> )); export default FontBoldIcon;