UNPKG

sebikostudio-icons

Version:
14 lines (9 loc) 712 B
import React, { forwardRef } from 'react'; export const BorderDashedIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "border, border dashed, dashed, line"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M1.5 9.5H4.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M8.5 9.5H11.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M15.5 9.5H18.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> </svg> )); export default BorderDashedIcon;