sebikostudio-icons
Version:
A collection of icon components
15 lines (10 loc) • 858 B
JavaScript
import React, { forwardRef } from 'react';
export const AlignBaselineIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "align baseline, text baseline, baseline"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M4.5 14.5V3.5M4.5 14.5L1.5 11M4.5 14.5L7.5 11" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M10.5 14.5L14.5 3.5L18.5 14.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M12 10.5H17" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M1.5 17.5H18.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default AlignBaselineIcon;