@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.81 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const AmmoIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M14.278 2.7a1.01 1.01 0 0 1 1.053 1.057l-.015.13-.054.28c-.064.31-.157.7-.29 1.095-.17.508-.43 1.113-.837 1.549l-1.39 1.49a1.7 1.7 0 0 1-.46 1.242L8.03 14.054c-.35.372-.894.451-1.328.232L5.698 15.36l.078.072a.75.75 0 0 1-1.023 1.097l-2.765-2.578a.75.75 0 0 1 1.023-1.097l.165.153.979-1.05a1.13 1.13 0 0 1 .048-1.48l4.231-4.539c.365-.391.871-.57 1.366-.534l1.315-1.41c.429-.46 1.068-.744 1.594-.923a10 10 0 0 1 1.441-.358zM4.273 14.03l.328.307.971-1.042-.328-.306zm9.405-9.682a7 7 0 0 0-.487.143c-.47.16-.812.347-.979.526l-1.06 1.137.826.77 1.06-1.137c.183-.197.362-.553.512-1.002a7 7 0 0 0 .128-.437M19.98 8.016a1.01 1.01 0 0 1 1.053 1.058l-.015.129-.054.28c-.064.31-.157.7-.29 1.095-.17.508-.43 1.113-.837 1.549l-1.39 1.49a1.7 1.7 0 0 1-.46 1.242l-4.256 4.511c-.351.372-.895.451-1.33.231L11.4 20.676l.077.073a.75.75 0 0 1-1.022 1.097L7.69 19.27a.75.75 0 0 1 1.023-1.097l.164.152.979-1.05c-.35-.43-.34-1.063.049-1.48l4.231-4.539c.365-.39.871-.57 1.366-.534l1.315-1.41c.429-.46 1.068-.744 1.593-.923a10 10 0 0 1 1.442-.358zm-9.035 10.29-.971 1.041.329.306.97-1.041zm8.435-8.64a7 7 0 0 0-.487.142c-.47.16-.812.348-.979.526l-1.06 1.137.826.77 1.06-1.137c.183-.196.362-.553.512-1.002.049-.146.09-.295.128-.437",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(AmmoIcon);
export default ForwardRef;