mango-ui-v2/components/FloatingElement.tsx

14 lines
268 B
TypeScript

import React from 'react'
export default function FloatingElement({ shrink = false, children }) {
return (
<div
className={`m-1 p-4 bg-th-bkg-2 rounded-lg overflow-auto ${
shrink ? null : `h-full`
}`}
>
{children}
</div>
)
}