Skip to content

Commit 7fe7a2e

Browse files
committed
fix(playground): add custom action icon across all playgrounds
1 parent c503d08 commit 7fe7a2e

3 files changed

Lines changed: 4 additions & 1 deletion

File tree

playground/react-web/src/settings/icons.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ configureIcons({
1010
update: 'save',
1111
cancel: 'x',
1212
destroy: 'trash-2',
13+
custom: 'send',
1314
},
1415
},
1516
})

playground/sveltekit/src/lib/settings/icons.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { configureIcons } from "@anhanga/sveltekit";
2-
import { Eye, Pencil, Plus, Save, Trash2, X } from "lucide-svelte";
2+
import { Eye, Pencil, Plus, Save, Send, Trash2, X } from "lucide-svelte";
33

44
configureIcons({
55
common: {
@@ -11,6 +11,7 @@ configureIcons({
1111
update: Save,
1212
cancel: X,
1313
destroy: Trash2,
14+
custom: Send,
1415
},
1516
},
1617
});

playground/vue-quasar/src/settings/icons.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ configureIcons({
1010
update: "save",
1111
cancel: "close",
1212
destroy: "delete",
13+
custom: "send",
1314
},
1415
},
1516
});

0 commit comments

Comments
 (0)