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

10 lines
206 B
TypeScript
Raw 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-04-03 22:08:27 +08:00
<h2 className={`font-fang-zheng-xiao-biao-song scroll-mt-20`} 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;