@@ -65,12 +65,12 @@ const forms = plugin(function ({ addBase, theme }) {
65
65
} ,
66
66
67
67
select : {
68
- 'background-image' : `url(${ svgToDataUri (
68
+ 'background-image' : `url(" ${ svgToDataUri (
69
69
`<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20"><path stroke="${ theme (
70
70
'colors.gray.400' ,
71
71
colors . gray [ 400 ]
72
72
) } " stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M6 8l4 4 4-4"/></svg>`
73
- ) } )`,
73
+ ) } " )`,
74
74
'background-position' : `right ${ spacing [ 2 ] } center` ,
75
75
'background-repeat' : `no-repeat` ,
76
76
'background-size' : `1.5em 1.5em` ,
@@ -143,15 +143,15 @@ const forms = plugin(function ({ addBase, theme }) {
143
143
} ,
144
144
145
145
[ `[type='checkbox']:checked` ] : {
146
- 'background-image' : `url(${ svgToDataUri (
146
+ 'background-image' : `url(" ${ svgToDataUri (
147
147
`<svg viewBox="0 0 16 16" fill="white" xmlns="http://www.w3.org/2000/svg"><path d="M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z"/></svg>`
148
- ) } )`,
148
+ ) } " )`,
149
149
} ,
150
150
151
151
[ `[type='radio']:checked` ] : {
152
- 'background-image' : `url(${ svgToDataUri (
152
+ 'background-image' : `url(" ${ svgToDataUri (
153
153
`<svg viewBox="0 0 16 16" fill="white" xmlns="http://www.w3.org/2000/svg"><circle cx="8" cy="8" r="3"/></svg>`
154
- ) } )`,
154
+ ) } " )`,
155
155
} ,
156
156
157
157
[ `
@@ -165,9 +165,9 @@ const forms = plugin(function ({ addBase, theme }) {
165
165
} ,
166
166
167
167
[ `[type='checkbox']:indeterminate` ] : {
168
- 'background-image' : `url(${ svgToDataUri (
168
+ 'background-image' : `url(" ${ svgToDataUri (
169
169
`<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16"><path stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 8h8"/></svg>`
170
- ) } )`,
170
+ ) } " )`,
171
171
'border-color' : `transparent` ,
172
172
'background-color' : `currentColor` ,
173
173
'background-size' : `100% 100%` ,
0 commit comments