mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
Some checks are pending
Node.js CI / build (push) Waiting to run
- Switch from @fontsource/inter to next/font/google for font loading - Update @umami/react-zen to v0.229.0 - Add type augmentation for react-zen missing children props - Move global.css to app directory Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
215 B
TypeScript
12 lines
215 B
TypeScript
import { ReactNode } from 'react';
|
|
import '@umami/react-zen';
|
|
|
|
declare module '@umami/react-zen' {
|
|
interface SelectProps {
|
|
children?: ReactNode;
|
|
}
|
|
|
|
interface TooltipProps {
|
|
children?: ReactNode;
|
|
}
|
|
}
|