feat: radius for inputs and buttons, shadow changes

This commit is contained in:
2025-07-18 10:38:36 +04:00
parent 39b4d36a82
commit e033938a03
10 changed files with 60 additions and 32 deletions

View File

@ -15,16 +15,16 @@ export function ColorSchemeToggle() {
getInitialValueInEffect: true,
});
const toggleColorScheme = () => {
setColorScheme(computedColorScheme === "light" ? "dark" : "light");
};
return (
<ActionIcon
onClick={() =>
setColorScheme(
computedColorScheme === "light" ? "dark" : "light"
)
}
onClick={toggleColorScheme}
variant="default"
size="xl"
radius="md"
radius="lg"
aria-label="Toggle color scheme"
className={style.container}>
<IconSun