20 lines
372 B
TypeScript
20 lines
372 B
TypeScript
import { createStyle } from '@gluestack-style/react';
|
|
|
|
export const SelectInput = createStyle({
|
|
_web: {
|
|
w: '$full',
|
|
},
|
|
pointerEvents: 'none',
|
|
flex: 1,
|
|
h: '$full',
|
|
color: '$textLight900',
|
|
props: {
|
|
placeholderTextColor: '$textLight500',
|
|
},
|
|
_dark: {
|
|
color: '$textDark50',
|
|
props: {
|
|
placeholderTextColor: '$textDark400',
|
|
},
|
|
},
|
|
});
|