fix: fix tailscale icon color

This commit is contained in:
Stavros
2025-04-09 17:36:59 +03:00
parent 9b39a2b856
commit f68c580e11

View File

@@ -1,8 +1,8 @@
import { useMantineColorScheme } from "@mantine/core"; import { useColorScheme } from "@mantine/hooks";
import type { SVGProps } from "react"; import type { SVGProps } from "react";
export function TailscaleIcon(props: SVGProps<SVGSVGElement>) { export function TailscaleIcon(props: SVGProps<SVGSVGElement>) {
const { colorScheme } = useMantineColorScheme(); const colorScheme = useColorScheme();
return ( return (
<svg <svg
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"