import { AdvancedSettingsContentWrapperWithDot } from '@/settings/components/AdvancedSettingsContentWrapperWithDot'; import { ADVANCED_SETTINGS_ANIMATION_DURATION } from '@/settings/constants/AdvancedSettingsAnimationDurations'; import { isAdvancedModeEnabledState } from '@/ui/navigation/navigation-drawer/states/isAdvancedModeEnabledState'; import styled from '@emotion/styled'; import { useRecoilValue } from 'recoil'; import { AnimatedExpandableContainer } from 'twenty-ui/layout'; const StyledContent = styled.div` width: 100%; `; type DotPosition = 'top' | 'centered'; type AdvancedSettingsWrapperProps = { children: React.ReactNode; animationDimension?: 'width' | 'height'; hideDot?: boolean; dotPosition?: DotPosition; }; export const AdvancedSettingsWrapper = ({ children, hideDot = false, dotPosition = 'centered', animationDimension = 'height', }: AdvancedSettingsWrapperProps) => { const isAdvancedModeEnabled = useRecoilValue(isAdvancedModeEnabledState); return ( {children} ); };