forked from Archives/Athou_commafeed
12 lines
406 B
TypeScript
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>
|
|
}
|