Files
fx-test/fluxer/patches/@phosphor-icons__react@2.1.10.patch
Vish 3b9d759b4b feat: add fluxer upstream source and self-hosting documentation
- Clone of github.com/fluxerapp/fluxer (official upstream)
- SELF_HOSTING.md: full VM rebuild procedure, architecture overview,
  service reference, step-by-step setup, troubleshooting, seattle reference
- dev/.env.example: all env vars with secrets redacted and generation instructions
- dev/livekit.yaml: LiveKit config template with placeholder keys
- fluxer-seattle/: existing seattle deployment setup scripts
2026-03-13 00:55:14 -07:00

26 lines
1.0 KiB
Diff

diff --git a/dist/lib/types.d.ts b/dist/lib/types.d.ts
index 884e1b7aae635d658d47444f29095374e2b539b1..f0a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0 100644
--- a/dist/lib/types.d.ts
+++ b/dist/lib/types.d.ts
@@ -1,10 +1,18 @@
-import { ComponentPropsWithoutRef, RefAttributes } from 'react';
+import { CSSProperties, RefAttributes, MouseEventHandler } from 'react';
export type IconWeight = "thin" | "light" | "regular" | "bold" | "fill" | "duotone";
-export interface IconProps extends ComponentPropsWithoutRef<"svg">, RefAttributes<SVGSVGElement> {
+export interface IconProps extends RefAttributes<SVGSVGElement> {
alt?: string;
color?: string;
size?: string | number;
weight?: IconWeight;
mirrored?: boolean;
+ className?: string;
+ style?: CSSProperties;
+ id?: string;
+ onClick?: MouseEventHandler<SVGSVGElement>;
+ 'aria-hidden'?: boolean | 'true' | 'false';
+ 'aria-label'?: string;
+ width?: string | number;
+ height?: string | number;
}
export type Icon = React.ForwardRefExoticComponent<IconProps>;