mirror of
https://github.com/discordjs/discord.js.git
synced 2026-06-04 01:50: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-light-900 dark:border-dark-100 border-t-2" />
|
|
</>
|
|
);
|
|
}
|