sebikostudio-icons
Version:
A collection of icon components
14 lines (9 loc) • 750 B
JavaScript
import React, { forwardRef } from 'react';
export const AlignCenterVerticallyIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "align, align center vertically, align center, center"} 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 10L18.5 10" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<rect width="3" height="16" rx="1.5" transform="matrix(1 0 0 -1 6 18)" fill="currentColor"/>
<rect width="3" height="10" rx="1.5" transform="matrix(1 0 0 -1 11 15)" fill="currentColor"/>
</svg>
));
export default AlignCenterVerticallyIcon;