Files
lixiyu-net/components/mdx/H2.tsx
2024-04-03 22:08:27 +08:00

10 lines
206 B
TypeScript

const H2 = (props: JSX.IntrinsicElements["h2"]) => {
return (
<h2 className={`font-fang-zheng-xiao-biao-song scroll-mt-20`} id={props.id}>
{props.children}
</h2>
);
};
export default H2;