@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.1 kB
JavaScript
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 StyledTiktokBrands = ({
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 9.842a9.849 9.849 0 0 1-5.757-1.84v8.38a7.621 7.621 0 1 1-6.575-7.553v4.215a3.499 3.499 0 1 0 2.449 3.337V0h4.126c-.003.348.026.696.087 1.04a5.73 5.73 0 0 0 2.528 3.76 5.693 5.693 0 0 0 3.141.945v4.097Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledTiktokBrands);
const TiktokBrands = /*#__PURE__*/memo(ForwardRef);
export default TiktokBrands;