sebikostudio-icons
Version:
A collection of icon components
46 lines • 1.67 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 TrophyIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "trophy, award, winner, success, champion, gold, first place",
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: "M4.5 1.5H10H15.5V6C15.5 8.51806 14.3144 10.8892 12.3 12.4L11.5 13L10 14L8.5 13L7.7 12.4C5.68555 10.8892 4.5 8.51806 4.5 6V1.5Z",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M10 17.5V14",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("rect", {
x: "6",
y: "16",
width: "8",
height: "3",
rx: "0.5",
fill: "currentColor"
}), /*#__PURE__*/React.createElement("path", {
d: "M5.75 10.5C3.25 10.5 1.5 8.5 1.5 6V3.5H4.5",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M14.25 10.5C16.75 10.5 18.5 8.5 18.5 6V3.5H15.5",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
})));
export default TrophyIcon;