mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-02 16:19:08 +00:00
10 lines
263 B
TypeScript
10 lines
263 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>
|
|
);
|
|
}
|