mirror of
https://github.com/discordjs/discord.js.git
synced 2026-06-02 17:10:08 +00: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" />
|
|
</>
|
|
);
|
|
}
|