react-components/typography.tsx

15 lines
335 B
TypeScript
Raw Normal View History

2024-09-27 19:39:59 +02:00
import React from "react";
export interface Props {
children?: React.ReactNode;
}
export class H1 extends React.Component<Props> {
render() {
return (
<h1 className="scroll-m-20 text-4xl font-extrabold tracking-tight lg:text-5xl">
{this.props.children}
</h1>
);
}
}