cleanup and docs
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m4s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m4s
This commit is contained in:
@ -4,9 +4,24 @@ import { atelierSeasideDark } from "react-syntax-highlighter/dist/esm/styles/hlj
|
||||
import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger } from "./ui/dialog";
|
||||
|
||||
type CodeDialogProps = {
|
||||
/**
|
||||
* The title of the dialog.
|
||||
*/
|
||||
title: string;
|
||||
|
||||
/**
|
||||
* The description of the dialog.
|
||||
*/
|
||||
description: string;
|
||||
|
||||
/**
|
||||
* The code to show in the dialog.
|
||||
*/
|
||||
code: string;
|
||||
|
||||
/**
|
||||
* The children for this element.
|
||||
*/
|
||||
children: React.ReactNode;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user