sebikostudio-icons
Version:
A collection of icon components
15 lines (10 loc) • 835 B
JavaScript
import React, { forwardRef } from 'react';
export const Archive2Icon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "archive, box, documents"} 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 18.5V8.5H18.5V18.5H1.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M1.5 8.5L3.5 1.5H16.5L18.5 8.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M8.5 11.5H11.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M5.5 8.5V4.5H12.5L14.5 6.5V8.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default Archive2Icon;