Files
discord.js/apps/website/src/components/Panel.tsx
2023-04-13 19:09:56 +02:00

11 lines
219 B
TypeScript

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