import { css } from '@emotion/react'; import { theme, spacing } from '@expo/styleguide'; import * as React from 'react'; import { CALLOUT } from '../Text'; type SidebarTitleProps = React.PropsWithChildren; export const SidebarTitle = ({ children }: SidebarTitleProps) => (
{children}
); const STYLES_TITLE = css({ display: 'block', position: 'relative', marginBottom: spacing[2], borderBottom: `1px solid ${theme.border.default}`, marginLeft: spacing[5] + spacing[0.5], marginRight: -spacing[4], paddingBottom: spacing[2], userSelect: 'none', });