umami/src/types/react-zen.d.ts
Mike Cao 30c45f888f
Some checks are pending
Node.js CI / build (push) Waiting to run
Replace fontsource with next/font/google and update react-zen.
- 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>
2026-01-19 13:02:47 -08:00

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;
}
}