Skip to content

Commit

Permalink
feat: add 'none' option to textTransform property
Browse files Browse the repository at this point in the history
Added none to textTransform
  • Loading branch information
gmartinu authored Nov 14, 2024
1 parent 45d57b4 commit e46fadd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/types/style.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export interface Style {
textDecorationStyle?: 'dashed' | 'dotted' | 'solid' | string; // ?
textIndent?: any; // ?
textOverflow?: 'ellipsis';
textTransform?: 'capitalize' | 'lowercase' | 'uppercase';
textTransform?: 'capitalize' | 'lowercase' | 'uppercase' | 'none';
verticalAlign?: 'sub' | 'super';

// Sizing/positioning
Expand Down

0 comments on commit e46fadd

Please sign in to comment.