import { cn } from "@plane/utils"; type TProps = { children: React.ReactNode; className?: string; darkerShade?: boolean; }; export const CodeBlock = ({ children, className, darkerShade }: TProps) => ( {children} );