sebikostudio-icons
Version:
A collection of icon components
15 lines (10 loc) • 1.04 kB
JavaScript
import React, { forwardRef } from 'react';
export const BorderAllIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "border all, borders"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<rect x="4.5" y="1.5" width="11" height="1" rx="0.5" fill="#D9D9D9" stroke="currentColor" strokeLinejoin="round"/>
<rect x="4.5" y="17.5" width="11" height="1" rx="0.5" fill="#D9D9D9" stroke="currentColor" strokeLinejoin="round"/>
<path d="M17.5 6V14C17.5 14.2761 17.7239 14.5 18 14.5C18.2761 14.5 18.5 14.2761 18.5 14V6C18.5 5.72386 18.2761 5.5 18 5.5C17.7239 5.5 17.5 5.72386 17.5 6Z" stroke="currentColor" strokeLinejoin="round"/>
<path d="M1.5 6V14C1.5 14.2761 1.72386 14.5 2 14.5C2.27614 14.5 2.5 14.2761 2.5 14V6C2.5 5.72386 2.27614 5.5 2 5.5C1.72386 5.5 1.5 5.72386 1.5 6Z" stroke="currentColor" strokeLinejoin="round"/>
</svg>
));
export default BorderAllIcon;