mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
7 lines
188 B
TypeScript
7 lines
188 B
TypeScript
import React from "react";
|
|
import clsx from "clsx";
|
|
|
|
export const CommonCodeBlockContainer = ({ as: As, ...props }) => {
|
|
return <As {...props} className={clsx(props.className)} />;
|
|
};
|