UNPKG

sebikostudio-icons

Version:
12 lines (7 loc) 671 B
import React, { forwardRef } from 'react'; export const DownloadIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "download, arrow down, arrow to bottom, box in, inside"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M10 13.5V2.5M10 13.5L13.5 9.5M10 13.5L6.5 9.5M3.5 14.5L3.5 16.5C3.5 17.0523 3.94772 17.5 4.5 17.5L15.5 17.5C16.0523 17.5 16.5 17.0523 16.5 16.5V14.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> </svg> )); export default DownloadIcon;