Files
discord.js/apps/website/src/components/Panel.tsx

11 lines
225 B
TypeScript

import type { PropsWithChildren } from 'react';
export function Panel({ children }: PropsWithChildren) {
return (
<>
{children}
<div className="border-light-900 dark:border-dark-100 -mx-8 border-t-2" />
</>
);
}