import type { ReactNode } from 'react' import { View, type StyleProp, type ViewStyle } from 'react-native' import type { HexColorToken } from '@helpwave/hightide-design/primitive-tokens' import { ContentThemeOverrideProvider } from '../../global-contexts/content-theme/ContentThemeProvider' import type { IconStyle } from '../../icons' export type ListItemAccessoryProps = { children: ReactNode, style?: StyleProp, foreground?: HexColorToken, iconStyle: IconStyle, } export const ListItemAccessory = ({ children, style, foreground, iconStyle, }: ListItemAccessoryProps) => ( {children} )