sebikostudio-icons
Version:
A collection of icon components
15 lines (10 loc) • 1.1 kB
JavaScript
import React, { forwardRef } from 'react';
export const MixerHorizontalIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "mixer horizontal, slider, sliders horizontal, 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="M1.5 5.5H4.5M18.5 5.5H9.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M1.5 14.5H10.5M18.5 14.5H15.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M9.5 5.5C9.5 6.88071 8.38071 8 7 8C5.61929 8 4.5 6.88071 4.5 5.5C4.5 4.11929 5.61929 3 7 3C8.38071 3 9.5 4.11929 9.5 5.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M15.5 14.5C15.5 15.8807 14.3807 17 13 17C11.6193 17 10.5 15.8807 10.5 14.5C10.5 13.1193 11.6193 12 13 12C14.3807 12 15.5 13.1193 15.5 14.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default MixerHorizontalIcon;