UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.43 kB
import React, { forwardRef, memo } from "react"; import { AccessibleIcon } from "../accessible-icon"; import { StyledSvg, StyledPath } from "../styles"; import { jsx as _jsx } from "react/jsx-runtime"; const StyledYoutubeBrands = ({ label, color = "#000000", className = "", css = {}, viewBox = "0 0 24 24" }, ref) => { return /*#__PURE__*/_jsx(AccessibleIcon, { label: label, children: /*#__PURE__*/_jsx(StyledSvg, { className: className, css: css, viewBox: viewBox, xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", ref: ref, children: /*#__PURE__*/_jsx(StyledPath, { css: { fill: `${color}` }, d: "M23.4985 6.64036C23.2225 5.60106 22.4092 4.78253 21.3766 4.50475C19.505 4 12 4 12 4C12 4 4.49503 4 2.62336 4.50475C1.59077 4.78258 0.777523 5.60106 0.501503 6.64036C0 8.52416 0 12.4545 0 12.4545C0 12.4545 0 16.3849 0.501503 18.2687C0.777523 19.308 1.59077 20.0924 2.62336 20.3702C4.49503 20.875 12 20.875 12 20.875C12 20.875 19.505 20.875 21.3766 20.3702C22.4092 20.0924 23.2225 19.308 23.4985 18.2687C24 16.3849 24 12.4545 24 12.4545C24 12.4545 24 8.52416 23.4985 6.64036ZM9.54544 16.023V8.88605L15.8181 12.4546L9.54544 16.023Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledYoutubeBrands); const YoutubeBrands = /*#__PURE__*/memo(ForwardRef); export default YoutubeBrands;