9 lines
182 B
TypeScript
9 lines
182 B
TypeScript
import { createStyle } from '@gluestack-style/react';
|
|
|
|
export const TooltipText = createStyle({
|
|
color: '$red400',
|
|
fontFamily: '$body',
|
|
_web: {
|
|
userSelect: 'none',
|
|
},
|
|
});
|