mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
12 lines
254 B
TypeScript
12 lines
254 B
TypeScript
import { Icons as ZenIcons } from '@umami/react-zen';
|
|
import * as lucide from 'lucide-react';
|
|
import * as LocalIcons from '@/components/svg';
|
|
|
|
const icons = {
|
|
...ZenIcons,
|
|
...LocalIcons,
|
|
};
|
|
|
|
export const Lucide = lucide;
|
|
|
|
export const Icons = icons;
|