File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change 1
1
import {
2
- ChevronDownIcon ,
3
2
LetterTextIcon ,
4
3
RadioIcon ,
4
+ Rows3Icon ,
5
5
Settings2Icon ,
6
6
SquareMousePointerIcon ,
7
7
TagIcon ,
@@ -20,7 +20,7 @@ export const defaultCode = `terraform {
20
20
21
21
export type SnippetFunc = ( name ?: string , order ?: number ) => string ;
22
22
type Snippet = {
23
- name : string ;
23
+ name : string ;
24
24
label : string ;
25
25
icon : typeof RadioIcon ;
26
26
snippet : SnippetFunc ;
@@ -211,49 +211,49 @@ export const slider: SnippetFunc = (
211
211
212
212
export const snippets : Snippet [ ] = [
213
213
{
214
- name : "text-input" ,
214
+ name : "text-input" ,
215
215
label : "Text Input" ,
216
216
icon : TextCursorInputIcon ,
217
217
snippet : input ,
218
218
} ,
219
219
{
220
- name : "textarea" ,
220
+ name : "textarea" ,
221
221
label : "Textarea" ,
222
222
icon : LetterTextIcon ,
223
223
snippet : textarea ,
224
224
} ,
225
225
{
226
- name : "radio" ,
226
+ name : "radio" ,
227
227
label : "Radio" ,
228
228
icon : RadioIcon ,
229
229
snippet : radio ,
230
230
} ,
231
231
{
232
- name : "switch" ,
232
+ name : "switch" ,
233
233
label : "Multi-select" ,
234
234
icon : SquareMousePointerIcon ,
235
235
snippet : multiSelect ,
236
236
} ,
237
237
{
238
- name : "tag-select" ,
238
+ name : "tag-select" ,
239
239
label : "Tag-select" ,
240
240
icon : TagIcon ,
241
241
snippet : tagSelect ,
242
242
} ,
243
243
{
244
- name : "switch" ,
244
+ name : "switch" ,
245
245
label : "Switch" ,
246
246
icon : ToggleLeftIcon ,
247
247
snippet : switchInput ,
248
248
} ,
249
249
{
250
- name : "dropdown" ,
250
+ name : "dropdown" ,
251
251
label : "Dropdown" ,
252
- icon : ChevronDownIcon ,
252
+ icon : Rows3Icon ,
253
253
snippet : dropdown ,
254
254
} ,
255
255
{
256
- name : "slider" ,
256
+ name : "slider" ,
257
257
label : "Slider" ,
258
258
icon : Settings2Icon ,
259
259
snippet : slider ,
You can’t perform that action at this time.
0 commit comments