migrate to mantine v9

This commit is contained in:
jeffvli
2026-04-28 20:58:45 -07:00
parent 03edd5a639
commit 6be5818493
9 changed files with 118 additions and 156 deletions
@@ -18,12 +18,7 @@ export const ActionBar = () => {
return (
<div className={styles.container}>
<Grid
display="flex"
gutter="sm"
style={{ padding: '0 var(--theme-spacing-md)' }}
w="100%"
>
<Grid display="flex" gap="sm" style={{ padding: '0 var(--theme-spacing-md)' }} w="100%">
<Grid.Col span={7}>
<TextInput
leftSection={<Icon icon="search" />}
@@ -6,7 +6,7 @@ import styles from './sidebar-item.module.css';
import { Button, ButtonProps } from '/@/shared/components/button/button';
interface SidebarItemProps extends ButtonProps {
interface SidebarItemProps extends Omit<ButtonProps, 'component' | 'ref'> {
to: LinkProps['to'];
}