mirror of
https://github.com/discordjs/discord.js.git
synced 2026-06-03 09:30:08 +00:00
Closes https://github.com/discordjs/discord.js/issues/8920 Closes https://github.com/discordjs/discord.js/issues/8997
11 lines
225 B
TypeScript
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" />
|
|
</>
|
|
);
|
|
}
|