import type { Theme } from '@fluentui-react-native/framework'; import { size20, size40 } from '@fluentui-react-native/design/tokens/global'; import type { TokenSettings } from '@fluentui-react-native/use-styling'; import type { MenuListTokens } from './MenuList.types'; export const defaultMenuListTokens: TokenSettings = (t: Theme): MenuListTokens => ({ padding: size40, minWidth: 128, maxWidth: 300, backgroundColor: t.colors.neutralBackground1, gap: size20, });