11 lines
239 B
TypeScript
11 lines
239 B
TypeScript
import { createStyle } from '@gluestack-style/react';
|
|
|
|
export const SelectActionsheet = createStyle({
|
|
width: '$full',
|
|
height: '$full',
|
|
justifyContent: 'flex-end',
|
|
alignItems: 'center',
|
|
_web: {
|
|
pointerEvents: 'none',
|
|
},
|
|
});
|