mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-05-23 21:51:33 +00:00
10 lines
203 B
TypeScript
10 lines
203 B
TypeScript
import React from "react";
|
|
|
|
export default function ModalAction({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}): JSX.Element {
|
|
return <div className="px-4 py-2 flex justify-end">{children}</div>;
|
|
}
|