sebikostudio-icons
Version:
A collection of icon components
15 lines (10 loc) • 1.11 kB
JavaScript
import React, { forwardRef } from 'react';
export const MixerVerticalIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "mixer vertical, slider, sliders vertical, slider, two lines"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M5.5 18.5L5.5 15.5M5.5 1.5L5.5 10.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M14.5 18.5L14.5 9.5M14.5 1.5L14.5 4.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M5.5 10.5C6.88071 10.5 8 11.6193 8 13C8 14.3807 6.88071 15.5 5.5 15.5C4.11929 15.5 3 14.3807 3 13C3 11.6193 4.11929 10.5 5.5 10.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M14.5 4.5C15.8807 4.5 17 5.61929 17 7C17 8.38071 15.8807 9.5 14.5 9.5C13.1193 9.5 12 8.38071 12 7C12 5.61929 13.1193 4.5 14.5 4.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default MixerVerticalIcon;