@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 722 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const StopIcon = ({
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: "M2.25 7.95a5.7 5.7 0 0 1 5.7-5.7h8.1a5.7 5.7 0 0 1 5.7 5.7v8.1a5.7 5.7 0 0 1-5.7 5.7h-8.1a5.7 5.7 0 0 1-5.7-5.7z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(StopIcon);
module.exports = ForwardRef;