UNPKG

@astraicons/react

Version:

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

21 lines 1.16 kB
import * as React from "react"; function VolumeUpIcon({ 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: "M19.277 14.244c.001.426.328.77.73.77.402-.001.727-.348.726-.774l-.004-1.35 1.273-.003c.402-.001.727-.348.726-.774s-.328-.77-.73-.77l-1.273.004-.003-1.35c0-.426-.327-.77-.73-.77-.401.002-.726.348-.725.774l.003 1.35-1.273.003c-.401.002-.726.348-.725.774s.328.771.73.77l1.272-.004zM10.3 5.085l1.363-1.486c.98-1.069 2.848-.615 3.373.631.187.444.192.945.284 1.417.942 4.786.876 7.751-.017 12.549-.082.441-.094.9-.222 1.331-.432 1.45-2.242 2.026-3.335.82l-1.39-1.533a2.72 2.72 0 0 0-2.014-.912H7.29C4.368 17.903 2 15.37 2 12.247v-.65c0-3.13 2.374-5.67 5.302-5.67h1.125c.705 0 1.38-.303 1.874-.841" })); } const ForwardRef = React.forwardRef(VolumeUpIcon); export default ForwardRef;