mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-29 14:18:26 +02:00
18 lines
322 B
TypeScript
18 lines
322 B
TypeScript
|
"use client";
|
||
|
|
||
|
export default function QRContainer({
|
||
|
children = <div/>,
|
||
|
outline = true
|
||
|
}) {
|
||
|
|
||
|
return (
|
||
|
<div
|
||
|
className={`relative w-fit border-2 rounded-md`}
|
||
|
>
|
||
|
<div className="bg-white p-6 rounded-md">
|
||
|
{children}
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
}
|