/** Peer dep imports */ import React from "react"; /** Type imports */ import type { DivProps, HeadingProps, ParagraphProps } from "./common"; /** * Global `

` typographic style */ export function H1({ children, ...rest }: HeadingProps) { return

{children}

; } /** * Global `

` typographic style */ export function H2({ children, ...rest }: HeadingProps) { return

{children}

; } /** * Global `

` typographic style */ export function H3({ children, ...rest }: HeadingProps) { return

{children}

; } /** * Global `

` typographic style */ export function H4({ children, ...rest }: HeadingProps) { return

{children}

; } /** * Global `
` typographic style */ export function H5({ children, ...rest }: HeadingProps) { return
{children}
; } /** * Global `
` typographic style */ export function H6({ children, ...rest }: HeadingProps) { return
{children}
; } /** * Global `

` typographic style */ export function P({ children, ...rest }: ParagraphProps) { return

{children}

; } /** * Global meta text typographic style */ export function M({ children, className = "m", ...rest }: DivProps) { return (
{children}
); } /** * Global `small` meta text typographic style */ export function MS(props: DivProps) { return ; } /** * Global `xsmall` meta text typographic style */ export function MXS(props: DivProps) { return ; }