33 lines
856 B
TypeScript
33 lines
856 B
TypeScript
|
import React, { DetailedHTMLProps, HTMLAttributes } from "react";
|
||
|
import { twMerge } from "tailwind-merge";
|
||
|
|
||
|
/**
|
||
|
* # General paper
|
||
|
* @className_wrapper twui-paper
|
||
|
*/
|
||
|
export default function Paper({
|
||
|
variant,
|
||
|
linkProps,
|
||
|
...props
|
||
|
}: DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement> & {
|
||
|
variant?: "normal";
|
||
|
linkProps?: DetailedHTMLProps<
|
||
|
React.AnchorHTMLAttributes<HTMLAnchorElement>,
|
||
|
HTMLAnchorElement
|
||
|
>;
|
||
|
}) {
|
||
|
return (
|
||
|
<div
|
||
|
{...props}
|
||
|
className={twMerge(
|
||
|
"flex flex-row items-center p-4 rounded bg-white dark:bg-white/10",
|
||
|
"border border-slate-200 dark:border-white/10 border-solid w-full",
|
||
|
"twui-paper",
|
||
|
props.className
|
||
|
)}
|
||
|
>
|
||
|
{props.children}
|
||
|
</div>
|
||
|
);
|
||
|
}
|