import { Box } from '../../elements/LayoutPrimitives' import { theme } from '../../tokens/stitches.config' type SkeletonArticleContainerProps = { margin?: number fontSize?: number fontFamily?: string lineHeight?: number children?: React.ReactNode } export function SkeletonArticleContainer( props: SkeletonArticleContainerProps ): JSX.Element { const styles = { margin: props.margin ?? 360, fontSize: props.fontSize ?? 20, lineHeight: props.lineHeight ?? 150, fontFamily: props.fontFamily ?? 'inter', readerFontColor: theme.colors.readerFont.toString(), readerTableHeaderColor: theme.colors.readerTableHeader.toString(), readerHeadersColor: theme.colors.readerFont.toString(), } return ( <> {props.children} {/* Saving Page */} ) }