From dcf069aa1b5ca5836deceb7a7e22b3a5a9e74a23 Mon Sep 17 00:00:00 2001 From: AlexSserb Date: Thu, 4 Sep 2025 10:23:55 +0400 Subject: [PATCH] fix: theme icon fixed --- src/components/ui/ThemeIcon/ThemeIcon.tsx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/components/ui/ThemeIcon/ThemeIcon.tsx b/src/components/ui/ThemeIcon/ThemeIcon.tsx index baeedf5..c2ce3f2 100644 --- a/src/components/ui/ThemeIcon/ThemeIcon.tsx +++ b/src/components/ui/ThemeIcon/ThemeIcon.tsx @@ -1,16 +1,20 @@ import React, { FC } from "react"; -import { Center, ThemeIconProps } from "@mantine/core"; +import { + Center, + ThemeIcon as MantineThemeIcon, + ThemeIconProps, +} from "@mantine/core"; type Props = ThemeIconProps; const ThemeIcon: FC = props => { return (
- {props.children} - +
); };