UNPKG

sebikostudio-icons

Version:
14 lines (9 loc) 659 B
import React, { forwardRef } from 'react'; export const BorderWidthIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "border width, border, width, stroke width, stroke"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <rect x="1" y="13" width="18" height="3" rx="0.5" fill="currentColor"/> <rect x="1" y="8" width="18" height="2" rx="0.5" fill="currentColor"/> <rect x="1" y="4" width="18" height="1" rx="0.5" fill="currentColor"/> </svg> )); export default BorderWidthIcon;