From 7ddcb5fe6b7de9df3e0424598d1836d51c3f80eb Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Mon, 22 Apr 2024 18:28:41 +0100 Subject: ui(extension): Use shadcn and better dark mode support --- apps/browser-extension/src/components/ui/input.tsx | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 apps/browser-extension/src/components/ui/input.tsx (limited to 'apps/browser-extension/src/components/ui/input.tsx') diff --git a/apps/browser-extension/src/components/ui/input.tsx b/apps/browser-extension/src/components/ui/input.tsx new file mode 100644 index 00000000..5751b004 --- /dev/null +++ b/apps/browser-extension/src/components/ui/input.tsx @@ -0,0 +1,24 @@ +import * as React from "react"; + +import { cn } from "../../utils/css"; + +export type InputProps = React.InputHTMLAttributes; + +const Input = React.forwardRef( + ({ className, type, ...props }, ref) => { + return ( + + ); + }, +); +Input.displayName = "Input"; + +export { Input }; -- cgit v1.2.3-70-g09d2