feat: support readonly config and no docker sock

This commit is contained in:
Aarnav Tale
2024-03-29 21:46:21 -04:00
parent 029f395673
commit e216d4171f
7 changed files with 139 additions and 87 deletions
+16
View File
@@ -0,0 +1,16 @@
import { InformationCircleIcon } from '@heroicons/react/24/outline'
import clsx from 'clsx'
import { type ReactNode } from 'react'
export default function Notice({ children }: { readonly children: ReactNode }) {
return (
<div className={clsx(
'p-4 rounded-md w-fit flex items-center gap-3',
'bg-slate-400 dark:bg-slate-700'
)}
>
<InformationCircleIcon className='h-6 w-6 text-white'/>
{children}
</div>
)
}