mirror of
https://iceshrimp.dev/iceshrimp/akkoma-fe.git
synced 2025-12-17 00:43:02 +01:00
14 lines
202 B
JavaScript
14 lines
202 B
JavaScript
const DialogModal = {
|
|
props: {
|
|
darkOverlay: {
|
|
default: true,
|
|
type: Boolean
|
|
},
|
|
onCancel: {
|
|
default: () => {},
|
|
type: Function
|
|
}
|
|
}
|
|
}
|
|
|
|
export default DialogModal
|