stoat-for-desktop/components/modal/modals/ChannelInfo.tsx

22 lines
528 B
TypeScript

import { Trans } from "@lingui-solid/solid/macro";
import { Markdown } from "@revolt/markdown";
import { Dialog, DialogProps } from "@revolt/ui";
import { Modals } from "../types";
export function ChannelInfoModal(
props: DialogProps & Modals & { type: "channel_info" },
) {
return (
<Dialog
show={props.show}
onClose={props.onClose}
title={`#${props.channel.name}`}
actions={[{ text: <Trans>Close</Trans> }]}
>
<Markdown content={props.channel.description!} />
</Dialog>
);
}