import { css } from '@emotion/react'; import { borderRadius, theme, spacing } from '@expo/styleguide'; import { forwardRef, PropsWithChildren } from 'react'; export type SnippetContentProps = PropsWithChildren<{ alwaysDark?: boolean; hideOverflow?: boolean; skipPadding?: boolean; className?: string; }>; export const SnippetContent = forwardRef( ( { children, className, alwaysDark = false, hideOverflow = false, skipPadding = false, }: SnippetContentProps, ref ) => (
{children}
) ); const contentStyle = css` color: ${theme.text.default}; background-color: ${theme.background.secondary}; border: 1px solid ${theme.border.default}; border-bottom-left-radius: ${borderRadius.medium}px; border-bottom-right-radius: ${borderRadius.medium}px; padding: ${spacing[4]}px; overflow-x: auto; code { padding-left: 0; padding-right: 0; } `; const contentDarkStyle = css` background-color: ${theme.palette.black}; border-color: transparent; white-space: nowrap; `; const contentHideOverflow = css` overflow: hidden; code { white-space: nowrap; } `; const skipPaddingStyle = css({ padding: 0, });