Files
commafeed/commafeed-client/src/components/content/BasicHtmlStyles.tsx
2024-06-13 23:28:45 +02:00

12 lines
406 B
TypeScript

import { TypographyStylesProvider } from "@mantine/core"
import type { ReactNode } from "react"
/**
* This component is used to provide basic styles to html typography elements.
*
* see https://mantine.dev/core/typography-styles-provider/
*/
export const BasicHtmlStyles = (props: { children: ReactNode }) => {
return <TypographyStylesProvider pl={0}>{props.children}</TypographyStylesProvider>
}