// ============================================================
// SVG icon library for icon-select grids
// Simple inline SVGs (24x24 viewBox, fill="currentColor")
// ============================================================
const _svg = (path) =>
``;
// Parameter types
export const paramTypeIcons = {
string: _svg(''),
integer: _svg(''),
float: _svg(''),
boolean: _svg(''),
select: _svg(''),
};
// Callback events
export const callbackEventIcons = {
on_play: _svg(''),
on_pause: _svg(''),
on_stop: _svg(''),
on_next: _svg(''),
on_previous: _svg(''),
on_volume: _svg(''),
on_mute: _svg(''),
on_seek: _svg(''),
on_turn_on: _svg(''),
on_turn_off: _svg(''),
on_toggle: _svg(''),
};