mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
13 lines
261 B
TypeScript
13 lines
261 B
TypeScript
import clsx from "clsx";
|
|
import React from "react";
|
|
|
|
export const Blockquote = ({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"blockquote">) => (
|
|
<blockquote
|
|
className={clsx("refine-wider-container", className)}
|
|
{...props}
|
|
/>
|
|
);
|