import { useTheme } from '@emotion/react'; import styled from '@emotion/styled'; import { useRecoilValue, useSetRecoilState } from 'recoil'; import { IconX, UndecoratedLink } from 'twenty-ui'; import { isNavigationDrawerExpandedState } from '@/ui/navigation/states/isNavigationDrawerExpanded'; import { navigationDrawerExpandedMemorizedState } from '@/ui/navigation/states/navigationDrawerExpandedMemorizedState'; import { navigationMemorizedUrlState } from '@/ui/navigation/states/navigationMemorizedUrlState'; type NavigationDrawerBackButtonProps = { title: string; }; const StyledIconAndButtonContainer = styled.button` align-items: center; background: inherit; border: none; color: ${({ theme }) => theme.font.color.secondary}; cursor: pointer; display: flex; flex-direction: row; font-weight: ${({ theme }) => theme.font.weight.medium}; gap: ${({ theme }) => theme.spacing(2)}; padding: ${({ theme }) => theme.spacing(1.5, 1)}; width: 100%; font-family: ${({ theme }) => theme.font.family}; &:hover { background: ${({ theme }) => theme.background.transparent.light}; border-radius: ${({ theme }) => theme.border.radius.sm}; } `; const StyledContainer = styled.div` align-items: center; display: flex; flex-direction: row; height: ${({ theme }) => theme.spacing(8)}; justify-content: space-between; `; export const NavigationDrawerBackButton = ({ title, }: NavigationDrawerBackButtonProps) => { const theme = useTheme(); const navigationMemorizedUrl = useRecoilValue(navigationMemorizedUrlState); const setIsNavigationDrawerExpanded = useSetRecoilState( isNavigationDrawerExpandedState, ); const navigationDrawerExpandedMemorized = useRecoilValue( navigationDrawerExpandedMemorizedState, ); return ( setIsNavigationDrawerExpanded(navigationDrawerExpandedMemorized) } > {title} ); };