sebikostudio-icons
Version:
A collection of icon components
24 lines • 1.13 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React, { forwardRef } from 'react';
export const Pill2Icon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", _extends({
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), /*#__PURE__*/React.createElement("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"
})));
export default Pill2Icon;