Skip to content

Commit 90a9436

Browse files
committed
fix: none native typing props removed
1 parent 71319a9 commit 90a9436

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

src/theme/types.ts

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,33 @@ type AllProps<T extends StyledPropConfig> = {
3535

3636
export type StyledProps = Omit<
3737
AllProps<StyledPropConfig>,
38-
'gap' | 'borderBottom'
38+
| 'gap'
39+
| 'verticalAlign'
40+
| 'borderBottom'
41+
| 'borderTop'
42+
| 'borderLeft'
43+
| 'borderRight'
44+
| 'wordBreak'
45+
| 'justifySelf'
46+
| 'overflowWrap'
47+
| 'textOverflow'
48+
| 'whiteSpace'
49+
| 'outline'
50+
| 'outlineWidth'
51+
| 'cursor'
52+
| 'userSelect'
53+
| 'order'
54+
| 'backgroundSize'
55+
| 'backgroundPosition'
56+
| 'backgroundRepeat'
57+
| 'backgroundAttachment'
58+
| 'backgroundBlendMode'
59+
| 'bgSize'
60+
| 'bgPosition'
61+
| 'bgRepeat'
62+
| 'bgAttachment'
63+
| 'bgBlendMode'
64+
| 'bgImage'
65+
| 'bgImg'
66+
| 'bgPos'
3967
>;

0 commit comments

Comments
 (0)