sebikostudio-icons
Version:
A collection of icon components
14 lines (9 loc) • 722 B
JavaScript
import React, { forwardRef } from 'react';
export const ArchiveIcon = 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="M2.5 18.5V5.5H17.5V18.5H2.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M2.5 5.5L4.5 1.5H15.5L17.5 5.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M7.5 9.5H12.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default ArchiveIcon;