import type { Theme } from '@fluentui-react-native/framework'; import { 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 => ({ paddingVertical: size40, minWidth: 128, maxWidth: 300, backgroundColor: t.colors.neutralBackground1, /* To account for the width of the vertical scrollView. With the default minWidth, some content may be cut off */ hasMaxHeight: { minWidth: 140, }, });