sebikostudio-icons
Version:
A collection of icon components
12 lines (7 loc) • 752 B
JavaScript
import React, { forwardRef } from 'react';
export const Pill2Icon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "pill, medicine, meds"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M6.98485 7.73864L12.2614 13.0152M11.1307 3.5928C12.5878 2.13573 14.9501 2.13573 16.4072 3.5928C17.8643 5.04987 17.8643 7.41225 16.4072 8.86932L8.86932 16.4072C7.41225 17.8643 5.04987 17.8643 3.5928 16.4072C2.13573 14.9501 2.13573 12.5878 3.5928 11.1307L11.1307 3.5928Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default Pill2Icon;