import { css } from '@emotion/react'; import { spacing } from '@expo/styleguide-base'; import type { PropsWithChildren } from 'react'; import { CALLOUT } from '../Text'; type SidebarTitleProps = PropsWithChildren; export const SidebarTitle = ({ children }: SidebarTitleProps) => (
{children}
); const STYLES_TITLE = css({ display: 'block', position: 'relative', marginLeft: spacing[3], marginRight: -spacing[4], paddingBottom: spacing[1], userSelect: 'none', });