Files
discord.js/apps/website/src/components/Panel.tsx
2023-03-28 19:02:36 +02:00

11 lines
219 B
TypeScript

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