13 lines
302 B
TypeScript
13 lines
302 B
TypeScript
import type React from "react";
|
|
import { H4, ParagraphProps } from "tamagui";
|
|
|
|
export const Heading = (props: React.PropsWithChildren<ParagraphProps>) => {
|
|
const { children, ...rest } = props;
|
|
|
|
return (
|
|
<H4 alignSelf="flex-start" fontWeight="bold" {...rest}>
|
|
{children}
|
|
</H4>
|
|
);
|
|
};
|