2022-07-18 11:38:44 +03:00

10 lines
225 B
TypeScript

import React from "react";
type Props = {
children: React.ReactNode;
};
export default function Heading({ children }: Props) {
return <h3 className="text-2xl text-current font-medium leading-relaxed">{children}</h3>;
}