import { memo, ReactNode, useContext, useMemo } from 'react'; import { BackgroundContext } from '../../utils/backgroundContext'; import { useContrastColor } from '../../hooks/useContrastColor'; export const BackgroundContextWrapper = memo( ({ backgroundColor, children }: { backgroundColor: string; children: ReactNode }) => { const contrastColor = useContrastColor(backgroundColor, undefined, undefined); const parentContext = useContext(BackgroundContext); const isTransparent = backgroundColor === 'transparent'; const surfaceContextValue = useMemo( () => ({ backgroundColor, color: contrastColor, }), [backgroundColor, contrastColor], ); return ( {children} ); }, );