+ {children} +
+ ) +} + +export function ul({ children, className }: TypographyProps) { + return ( +
+ {children}
+
+ )
+}
+
+export function code({ children, className }: TypographyProps) {
+ return (
+
+ {children}
+
+ )
+}
+
+export function blockquote({ children, className }: TypographyProps) {
+ return (
+ + {children} ++ ) +}