mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-11 00:53:31 +01:00
11 lines
219 B
TypeScript
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" />
|
|
</>
|
|
);
|
|
}
|