sebikostudio-icons
Version:
A collection of icon components
15 lines (10 loc) • 1.26 kB
JavaScript
import React, { forwardRef } from 'react';
export const TextUnorderedListIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "text unordered list, ul, list, bullet points, unordered 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.5H5M18.5 15.5H5M18.5 9.5H5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M2.5 15.5C2.5 15.7761 2.27614 16 2 16C1.72386 16 1.5 15.7761 1.5 15.5C1.5 15.2239 1.72386 15 2 15C2.27614 15 2.5 15.2239 2.5 15.5Z" fill="currentColor" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M2.5 9.5C2.5 9.77614 2.27614 10 2 10C1.72386 10 1.5 9.77614 1.5 9.5C1.5 9.22386 1.72386 9 2 9C2.27614 9 2.5 9.22386 2.5 9.5Z" fill="currentColor" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M2.5 3.5C2.5 3.77614 2.27614 4 2 4C1.72386 4 1.5 3.77614 1.5 3.5C1.5 3.22386 1.72386 3 2 3C2.27614 3 2.5 3.22386 2.5 3.5Z" fill="currentColor" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default TextUnorderedListIcon;