mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-17 12:03:31 +01:00
feat: astro guide (#8714)
This commit is contained in:
18
packages/guide/src/components/Info.tsx
Normal file
18
packages/guide/src/components/Info.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import type { PropsWithChildren } from 'react';
|
||||
import { VscInfo } from 'react-icons/vsc';
|
||||
|
||||
export function Info({ children }: PropsWithChildren<{}>) {
|
||||
return (
|
||||
<div className="rounded border border-blue-500 p-4">
|
||||
<div className="flex flex-row place-items-center gap-4">
|
||||
<span className="text-blue-500">
|
||||
<VscInfo size={20} />
|
||||
</span>
|
||||
<div className="flex flex-col gap-2 text-sm">
|
||||
<span className="font-semibold text-blue-500">Info</span>
|
||||
{children}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user