We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e88654c commit b95e10aCopy full SHA for b95e10a
src/commons/new.ts
@@ -14,5 +14,6 @@ export {
14
PaddingModifiers,
15
TypographyModifiers,
16
ColorsModifiers,
17
- BackgroundColorModifier
+ BackgroundColorModifier,
18
+ FlexModifiers
19
} from './modifiers';
src/components/text/index.tsx
@@ -8,15 +8,17 @@ import {
8
ForwardRefInjectedProps,
9
MarginModifiers,
10
11
- ColorsModifiers
+ ColorsModifiers,
12
13
} from '../../commons/new';
import {Colors} from 'style';
import {TextUtils} from 'utils';
export type TextProps = RNTextProps &
TypographyModifiers &
ColorsModifiers &
- MarginModifiers & {
20
+ MarginModifiers &
21
+ FlexModifiers & {
22
/**
23
* color of the text
24
*/
0 commit comments