sebikostudio-icons
Version:
A collection of icon components
14 lines (9 loc) • 794 B
JavaScript
import React, { forwardRef } from 'react';
export const DotsVerticalIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "dots vertical, three dots, dots, menu, more, options"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<rect x="9" y="9" width="2" height="2" rx="1" fill="currentColor" stroke="currentColor" strokeLinejoin="round"/>
<rect x="9" y="2.5" width="2" height="2" rx="1" fill="currentColor" stroke="currentColor" strokeLinejoin="round"/>
<rect x="9" y="15.5" width="2" height="2" rx="1" fill="currentColor" stroke="currentColor" strokeLinejoin="round"/>
</svg>
));
export default DotsVerticalIcon;