UNPKG

sebikostudio-icons

Version:
14 lines (9 loc) 664 B
import React, { forwardRef } from 'react'; export const AlignBottomIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "align, align bottom, bottom"} 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 18.5L18.5 18.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <rect x="6" y="3" width="3" height="13" rx="1.5" fill="currentColor"/> <rect x="11" y="8" width="3" height="8" rx="1.5" fill="currentColor"/> </svg> )); export default AlignBottomIcon;