@@ -82,7 +82,7 @@ const TextContainer = styled.div<{
82
82
margin: 0;
83
83
${ props => props . $animationStyle }
84
84
${ ( props ) =>
85
- props . $type === ' text' && ' white-space:break-spaces;line-height: 1.9;' } ;
85
+ props . $type === " text" && " white-space:break-spaces;line-height: 1.9;" } ;
86
86
${ ( props ) => props . $styleConfig && getStyle ( props . $styleConfig ) }
87
87
display: flex;
88
88
font-size: 13px;
@@ -123,13 +123,13 @@ let TextTmpComp = (function () {
123
123
124
124
const childrenMap = {
125
125
text : stringExposingStateControl (
126
- ' text' ,
127
- trans ( ' textShow.text' , { name : '{{ currentUser.name}}' } )
126
+ " text" ,
127
+ trans ( " textShow.text" , { name : "{{ currentUser.name}}" } )
128
128
) ,
129
129
autoHeight : AutoHeightControl ,
130
- type : dropdownControl ( typeOptions , ' markdown' ) ,
130
+ type : dropdownControl ( typeOptions , " markdown" ) ,
131
131
horizontalAlignment : alignWithJustifyControl ( ) ,
132
- verticalAlignment : dropdownControl ( VerticalAlignmentOptions , ' center' ) ,
132
+ verticalAlignment : dropdownControl ( VerticalAlignmentOptions , " center" ) ,
133
133
style : styleControl ( TextStyle ) ,
134
134
animationStyle : styleControl ( AnimationStyle ) ,
135
135
margin : MarginControl ,
@@ -144,11 +144,11 @@ let TextTmpComp = (function () {
144
144
$styleConfig = { props . style }
145
145
style = { {
146
146
justifyContent : props . horizontalAlignment ,
147
- alignItems : props . autoHeight ? ' center' : props . verticalAlignment ,
147
+ alignItems : props . autoHeight ? " center" : props . verticalAlignment ,
148
148
textAlign : props . horizontalAlignment ,
149
149
} }
150
150
>
151
- { props . type === ' markdown' ? (
151
+ { props . type === " markdown" ? (
152
152
< TacoMarkDown > { value } </ TacoMarkDown >
153
153
) : (
154
154
value
0 commit comments