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

10 lines
188 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 (
<h2 className={"caption-font 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;