import { useMantineTheme, Card } from '@mantine/core'; export function AppShelfItemWrapper(props: any) { const { children, hovering } = props; const theme = useMantineTheme(); return ( {children} ); }