@helpwave/hightide
Version:
helpwave's component and theming library
25 lines • 426 B
JavaScript
// src/components/icons/Tag.tsx
import Image from "next/image";
import { jsx } from "react/jsx-runtime";
var TagIcon = ({
className,
width = 16,
height = 16,
...props
}) => {
return /* @__PURE__ */ jsx(
Image,
{
...props,
width,
height,
alt: "",
src: "https://cdn.helpwave.de/icons/label.png",
className
}
);
};
export {
TagIcon
};
//# sourceMappingURL=Tag.mjs.map