Files
discord.js/apps/guide/src/components/H2.tsx
2023-05-01 13:14:13 +02:00

10 lines
265 B
TypeScript

import type { HTMLAttributes, PropsWithChildren } from 'react';
export function H2({ children, className, ...props }: PropsWithChildren<HTMLAttributes<HTMLHeadingElement>>) {
return (
<h2 className={`group ${className}`} {...props}>
{children}
</h2>
);
}