mirror of
https://github.com/frappe/erpnext.git
synced 2026-08-18 17:08:42 +00:00
* fix(banking): correct usage of hooks in rule action * fix(banking): apply ESLint rules for hooks * fix(banking): add lazy imports and code-splitting
8 lines
228 B
TypeScript
8 lines
228 B
TypeScript
import { Loader2Icon } from 'lucide-react'
|
|
|
|
export const ModalContentFallback = () => (
|
|
<div className="flex items-center justify-center py-16">
|
|
<Loader2Icon className="size-6 animate-spin text-muted-foreground" />
|
|
</div>
|
|
)
|