Files
lixiyu-net/components/mdx/H2.tsx
2023-12-29 20:07:19 +08:00

10 lines
275 B
TypeScript

import { fontFangZhengXiaoBiaoSongCN } from "@/styles/font";
export const H2 = (props: JSX.IntrinsicElements["h2"]) => {
return (
<h2 className={`${fontFangZhengXiaoBiaoSongCN.className} mt-3 mb-1 scroll-mt-20`} id={props.id}>
{props.children}
</h2>
);
};