1
0
Fork 0

wip(org): More work on managing patterns

This commit is contained in:
joostdecock 2023-05-31 15:32:54 +02:00
parent cdc67a6086
commit cab7f5d2c5
15 changed files with 375 additions and 176 deletions

View file

@ -0,0 +1,8 @@
import { ModalWrapper } from 'shared/components/wrappers/modal.mjs'
import { Spinner } from 'shared/components/spinner.mjs'
export const ModalSpinner = ({ color = 'warning' }) => (
<ModalWrapper bare>
<Spinner className={`w-24 h-24 text-${color} animate-spin`} />
</ModalWrapper>
)