Files

10 lines
213 B
TypeScript
Raw Permalink Normal View History

2024-04-03 22:08:27 +08:00
const H2 = (props: JSX.IntrinsicElements["h2"]) => {
2023-12-25 17:21:39 +08:00
return (
2024-09-28 22:13:37 +08:00
<h2 className={"caption-font mt-6 mb-2 scroll-mt-20 text-[1.45rem]"} id={props.id}>
2023-12-25 17:21:39 +08:00
{props.children}
</h2>
);
};
2024-04-03 22:08:27 +08:00
export default H2;