@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
21 lines • 815 B
JavaScript
import * as React from "react";
function PauseIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M5.813 4C4.259 4 3 5.28 3 6.857v10.286C3 18.72 4.26 20 5.813 20s2.812-1.28 2.812-2.857V6.857C8.625 5.28 7.365 4 5.813 4M18.188 4c-1.554 0-2.813 1.28-2.813 2.857v10.286c0 1.578 1.26 2.857 2.813 2.857S21 18.72 21 17.143V6.857C21 5.28 19.74 4 18.188 4"
}));
}
const ForwardRef = React.forwardRef(PauseIcon);
export default ForwardRef;