Files
lixiyu-net/components/mdx/H2.tsx

10 lines
275 B
TypeScript
Raw Normal View History

2023-12-29 20:07:19 +08:00
import { fontFangZhengXiaoBiaoSongCN } from "@/styles/font";
2023-12-25 17:21:39 +08:00
export const H2 = (props: JSX.IntrinsicElements["h2"]) => {
return (
2023-12-29 20:07:19 +08:00
<h2 className={`${fontFangZhengXiaoBiaoSongCN.className} mt-3 mb-1 scroll-mt-20`} id={props.id}>
2023-12-25 17:21:39 +08:00
{props.children}
</h2>
);
};