UNPKG

sebikostudio-icons

Version:
15 lines (10 loc) 1.15 kB
import React, { forwardRef } from 'react'; export const TextOrderedListIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "text ordered list, ol, list, bullet points, ordered list, numeric list"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M18.5 3.5H6M18.5 15.5H6M18.5 9.5H6" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M1.5 2.5L2.5 1.5V5.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M1.5 8.5C1.5 7.5 2.5 7.5 2.5 7.5C2.5 7.5 3.5 7.5 3.5 8.5C3.5 9.5 3 9.75 2.5 10.3571C2 10.9285 1.5 11.5 1.5 11.5H3.75" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M1.5 14.35C1.5 13.5 2.5 13.5 2.5 13.5C2.5 13.5 3.5 13.5 3.5 14.5C3.5 15.1476 2.85 15.5 2.85 15.5C2.85 15.5 3.5 15.8524 3.5 16.5C3.5 17.5 2.5 17.5 2.5 17.5C2.5 17.5 1.5 17.5 1.5 16.65" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> </svg> )); export default TextOrderedListIcon;