Files
lixiyu-net/components/mdx/H2.tsx
2024-09-28 22:13:37 +08:00

10 lines
213 B
TypeScript

const H2 = (props: JSX.IntrinsicElements["h2"]) => {
return (
<h2 className={"caption-font mt-6 mb-2 scroll-mt-20 text-[1.45rem]"} id={props.id}>
{props.children}
</h2>
);
};
export default H2;