11 lines
211 B
TypeScript
11 lines
211 B
TypeScript
import { createStyle } from '@gluestack-style/react';
|
|
|
|
export const FormControlHelperText = createStyle({
|
|
props: {
|
|
size: 'xs',
|
|
},
|
|
color: '$textLight500',
|
|
_dark: {
|
|
color: '$textDark400',
|
|
},
|
|
});
|