update antd & fix rtl styles

This commit is contained in:
2025-12-16 00:11:37 +03:00
parent 19889ed487
commit 16d66da31b
8 changed files with 497 additions and 631 deletions

View File

@@ -5,15 +5,16 @@ interface BackIconType {
className?: string;
onClick?: () => void;
iconColor?: string;
iconSize?: number;
}
const BackIcon = ({ className, onClick, iconColor }: BackIconType) => {
const BackIcon = ({ className, onClick, iconColor, iconSize }: BackIconType) => {
const { themeName } = useAppSelector((state) => state.theme);
const color = iconColor || (themeName === "dark" ? "white" : ProGray1);
return (
<svg
width="16"
height="16"
width={iconSize || 16}
height={iconSize || 16}
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"