Files
discord.js/apps/website/src/components/CodeHeading.tsx
2023-07-31 21:08:13 +02:00

29 lines
661 B
TypeScript

import type { ReactNode } from 'react';
import { Anchor } from './Anchor';
export interface CodeListingProps {
/**
* The value of this heading.
*/
readonly children: ReactNode;
/**
* Additional class names to apply to the root element.
*/
readonly className?: string | undefined;
/**
* The href of this heading.
*/
readonly href?: string | undefined;
}
export function CodeHeading({ href, className, children }: CodeListingProps) {
return (
<div
className={`flex flex-row flex-wrap place-items-center gap-1 break-all font-mono text-lg font-bold ${className}`}
>
{href ? <Anchor href={href} /> : null}
{children}
</div>
);
}