18 lines
470 B
JavaScript
18 lines
470 B
JavaScript
/**
|
|
* Lucide Icons Index
|
|
* Re-exports all icons for easy importing
|
|
*/
|
|
|
|
// Icon functions (return SVG strings)
|
|
export { micIcon } from "./mic.js";
|
|
export { searchIcon } from "./search.js";
|
|
export { menuIcon } from "./menu.js";
|
|
export { userIcon } from "./user.js";
|
|
export { shoppingBagIcon } from "./shopping-bag.js";
|
|
export { sendIcon } from "./send-icon.js";
|
|
|
|
// Icon web components
|
|
import "./menu-icon.js";
|
|
import "./user-icon.js";
|
|
import "./shopping-bag-icon.js";
|