mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
10 lines
288 B
TypeScript
10 lines
288 B
TypeScript
import { useMantineTheme } from "@mantine/core"
|
|
import { useMobile } from "hooks/useMobile"
|
|
|
|
export const useActionButton = () => {
|
|
const theme = useMantineTheme()
|
|
const mobile = useMobile(theme.breakpoints.xl)
|
|
const spacing = mobile ? 14 : 0
|
|
return { mobile, spacing }
|
|
}
|