diff --git a/src/renderer/components/input/input.tsx b/src/renderer/components/input/input.tsx index dc65e22aee..4248305080 100644 --- a/src/renderer/components/input/input.tsx +++ b/src/renderer/components/input/input.tsx @@ -37,6 +37,10 @@ export interface IconDataFnArg { export type IconData = string | React.ReactNode | ((opt: IconDataFnArg) => React.ReactNode); export type InputProps = Omit & { + /** + * @deprecated + */ + theme?: "round-black" | "round"; lightTheme?: boolean; // Forced light theme, may be used for dialogs which is always "bright" className?: string; value?: string;