@@ -64,6 +64,10 @@ export const SmallSizeImage = (): JSX.Element => (
6464 < svg
6565 width = '48'
6666 height = '48'
67+ style = { {
68+ width : '100%' ,
69+ height : 'auto' ,
70+ } }
6771 viewBox = '0 0 48 48'
6872 fill = 'none'
6973 xmlns = 'http://www.w3.org/2000/svg'
@@ -86,6 +90,10 @@ export const LeftAlignedImage = (): JSX.Element => (
8690 width = '48'
8791 height = '48'
8892 viewBox = '0 0 48 48'
93+ style = { {
94+ width : '100%' ,
95+ height : 'auto' ,
96+ } }
8997 aria-labelledby = 'leftAlignedTitle'
9098 fill = 'currentColor'
9199 stroke = 'currentColor'
@@ -103,7 +111,10 @@ export const LeftAlignedImage = (): JSX.Element => (
103111export const ContentCenterImage = ( ) : JSX . Element => (
104112 < svg
105113 xmlns = 'http://www.w3.org/2000/svg'
106- className = 'icon icon-tabler icon-tabler-align-box-center-middle-filled'
114+ style = { {
115+ width : '100%' ,
116+ height : 'auto' ,
117+ } }
107118 width = '48'
108119 height = '48'
109120 viewBox = '0 0 24 24'
@@ -124,9 +135,12 @@ export const ContentCenterImage = (): JSX.Element => (
124135export const ContentLeftImage = ( ) : JSX . Element => (
125136 < svg
126137 xmlns = 'http://www.w3.org/2000/svg'
127- className = 'icon icon-tabler icon-tabler-align-box-left-middle-filled'
128138 width = '48'
129139 height = '48'
140+ style = { {
141+ width : '100%' ,
142+ height : 'auto' ,
143+ } }
130144 viewBox = '0 0 24 24'
131145 strokeWidth = '1.5'
132146 stroke = 'currentColor'
@@ -146,7 +160,10 @@ export const ContentLeftImage = (): JSX.Element => (
146160export const ContentRightImage = ( ) : JSX . Element => (
147161 < svg
148162 xmlns = 'http://www.w3.org/2000/svg'
149- className = 'icon icon-tabler icon-tabler-align-box-right-middle-filled'
163+ style = { {
164+ width : '100%' ,
165+ height : 'auto' ,
166+ } }
150167 width = '48'
151168 height = '48'
152169 viewBox = '0 0 24 24'
@@ -167,7 +184,10 @@ export const ContentRightImage = (): JSX.Element => (
167184export const ContentBottomCenterImage = ( ) : JSX . Element => (
168185 < svg
169186 xmlns = 'http://www.w3.org/2000/svg'
170- className = 'icon icon-tabler icon-tabler-align-box-right-middle-filled'
187+ style = { {
188+ width : '100%' ,
189+ height : 'auto' ,
190+ } }
171191 width = '48'
172192 height = '48'
173193 viewBox = '0 0 24 24'
@@ -181,7 +201,10 @@ export const ContentBottomCenterImage = (): JSX.Element => (
181201export const ContentBottomLeftImage = ( ) : JSX . Element => (
182202 < svg
183203 xmlns = 'http://www.w3.org/2000/svg'
184- className = ''
204+ style = { {
205+ width : '100%' ,
206+ height : 'auto' ,
207+ } }
185208 width = '48'
186209 height = '48'
187210 viewBox = '0 0 24 24'
@@ -197,6 +220,10 @@ export const RightAlignedImage = (): JSX.Element => (
197220 < svg
198221 width = '48'
199222 height = '48'
223+ style = { {
224+ width : '100%' ,
225+ height : 'auto' ,
226+ } }
200227 viewBox = '0 0 48 48'
201228 aria-labelledby = 'rightAlignedTitle'
202229 fill = 'currentColor'
0 commit comments