UNPKG

sebikostudio-icons

Version:
18 lines (13 loc) 1.58 kB
import React, { forwardRef } from 'react'; export const Presentation1Icon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "presentation, slides, ppt, powerpoint"} 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 16.5L1.5 3.5L18.5 3.5L18.5 16.5L1.5 16.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M6.5 8.5C6.5 10.1569 7.84315 11.5 9.5 11.5V8.5H12.5C12.5 6.84315 11.1569 5.5 9.5 5.5C7.84315 5.5 6.5 6.84315 6.5 8.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M6.5 8.5C6.5 10.1569 7.84315 11.5 9.5 11.5V8.5H12.5C12.5 6.84315 11.1569 5.5 9.5 5.5C7.84315 5.5 6.5 6.84315 6.5 8.5Z" stroke="currentColor" strokeOpacity="0.2" strokeLinecap="round" strokeLinejoin="round"/> <path d="M12.5 14.5C14.1569 14.5 15.5 13.1569 15.5 11.5L12.5 11.5L12.5 14.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M12.5 14.5C14.1569 14.5 15.5 13.1569 15.5 11.5L12.5 11.5L12.5 14.5Z" stroke="currentColor" strokeOpacity="0.2" strokeLinecap="round" strokeLinejoin="round"/> <path d="M1.5 16.5H18.5V17C18.5 17.2761 18.2761 17.5 18 17.5H2C1.72386 17.5 1.5 17.2761 1.5 17V16.5Z" fill="currentColor" stroke="currentColor"/> <path d="M1.5 3.5H18.5V3C18.5 2.72386 18.2761 2.5 18 2.5H2C1.72386 2.5 1.5 2.72386 1.5 3V3.5Z" fill="currentColor" stroke="currentColor"/> </svg> )); export default Presentation1Icon;