UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

20 lines 963 B
const React = require("react"); const { forwardRef } = require("react"); const SoundIcon = ({ 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", { d: "M9 5.25a.75.75 0 0 1 .75.75v13a.75.75 0 0 1-1.5 0V6A.75.75 0 0 1 9 5.25M12 8.139a.75.75 0 0 1 .75.75v7.222a.75.75 0 0 1-1.5 0V8.89a.75.75 0 0 1 .75-.75M6 9.583a.75.75 0 0 1 .75.75v4.333a.75.75 0 0 1-1.5 0v-4.333a.75.75 0 0 1 .75-.75M18 9.583a.75.75 0 0 1 .75.75v4.333a.75.75 0 0 1-1.5 0v-4.333a.75.75 0 0 1 .75-.75M15 11.028a.75.75 0 0 1 .75.75v1.444a.75.75 0 0 1-1.5 0v-1.444a.75.75 0 0 1 .75-.75" })); const ForwardRef = forwardRef(SoundIcon); module.exports = ForwardRef;