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 11import {
2- ChevronDownIcon ,
32 LetterTextIcon ,
43 RadioIcon ,
4+ Rows3Icon ,
55 Settings2Icon ,
66 SquareMousePointerIcon ,
77 TagIcon ,
@@ -20,7 +20,7 @@ export const defaultCode = `terraform {
2020
2121export type SnippetFunc = ( name ?: string , order ?: number ) => string ;
2222type Snippet = {
23- name : string ;
23+ name : string ;
2424 label : string ;
2525 icon : typeof RadioIcon ;
2626 snippet : SnippetFunc ;
@@ -211,49 +211,49 @@ export const slider: SnippetFunc = (
211211
212212export const snippets : Snippet [ ] = [
213213 {
214- name : "text-input" ,
214+ name : "text-input" ,
215215 label : "Text Input" ,
216216 icon : TextCursorInputIcon ,
217217 snippet : input ,
218218 } ,
219219 {
220- name : "textarea" ,
220+ name : "textarea" ,
221221 label : "Textarea" ,
222222 icon : LetterTextIcon ,
223223 snippet : textarea ,
224224 } ,
225225 {
226- name : "radio" ,
226+ name : "radio" ,
227227 label : "Radio" ,
228228 icon : RadioIcon ,
229229 snippet : radio ,
230230 } ,
231231 {
232- name : "switch" ,
232+ name : "switch" ,
233233 label : "Multi-select" ,
234234 icon : SquareMousePointerIcon ,
235235 snippet : multiSelect ,
236236 } ,
237237 {
238- name : "tag-select" ,
238+ name : "tag-select" ,
239239 label : "Tag-select" ,
240240 icon : TagIcon ,
241241 snippet : tagSelect ,
242242 } ,
243243 {
244- name : "switch" ,
244+ name : "switch" ,
245245 label : "Switch" ,
246246 icon : ToggleLeftIcon ,
247247 snippet : switchInput ,
248248 } ,
249249 {
250- name : "dropdown" ,
250+ name : "dropdown" ,
251251 label : "Dropdown" ,
252- icon : ChevronDownIcon ,
252+ icon : Rows3Icon ,
253253 snippet : dropdown ,
254254 } ,
255255 {
256- name : "slider" ,
256+ name : "slider" ,
257257 label : "Slider" ,
258258 icon : Settings2Icon ,
259259 snippet : slider ,
You can’t perform that action at this time.
0 commit comments