23 lines
552 B
TypeScript
23 lines
552 B
TypeScript
import { createStyle } from '@gluestack-style/react';
|
|
|
|
export const AlertDialog = createStyle({
|
|
w: '$full',
|
|
h: '$full',
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
|
|
variants: {
|
|
size: {
|
|
xs: { _content: { w: '60%', maxWidth: 360 } },
|
|
sm: { _content: { w: '70%', maxWidth: 420 } },
|
|
md: { _content: { w: '80%', maxWidth: 510 } },
|
|
lg: { _content: { w: '90%', maxWidth: 640 } },
|
|
full: { _content: { w: '$full' } },
|
|
},
|
|
},
|
|
defaultProps: { size: 'md' },
|
|
|
|
_web: {
|
|
pointerEvents: 'box-none',
|
|
},
|
|
});
|