sebikostudio-icons
Version:
A collection of icon components
17 lines (12 loc) • 1.37 kB
JavaScript
import React, { forwardRef } from 'react';
export const PrintmakingPressIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "printmaking press, rollers, press, printing, art"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M6.5 6C6.5 7.38071 5.38071 8.5 4 8.5C2.61929 8.5 1.5 7.38071 1.5 6C1.5 4.61929 2.61929 3.5 4 3.5C5.38071 3.5 6.5 4.61929 6.5 6Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M4 3.5H16C17.3807 3.5 18.5 4.61929 18.5 6C18.5 7.38071 17.3807 8.5 16 8.5H4" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M6.5 14C6.5 15.3807 5.38071 16.5 4 16.5C2.61929 16.5 1.5 15.3807 1.5 14C1.5 12.6193 2.61929 11.5 4 11.5C5.38071 11.5 6.5 12.6193 6.5 14Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M4 11.5H16C17.3807 11.5 18.5 12.6193 18.5 14C18.5 15.3807 17.3807 16.5 16 16.5H4" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M6 7.5H18" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M6 12.5H18" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default PrintmakingPressIcon;