fork
Configure Feed
Select the types of activity you want to include in your feed.
Openstatus
www.openstatus.dev
fork
Configure Feed
Select the types of activity you want to include in your feed.
1import * as React from "react";
2
3import { cn } from "../lib/utils";
4
5export type InputProps = React.InputHTMLAttributes<HTMLInputElement>;
6
7const Input = React.forwardRef<HTMLInputElement, InputProps>(
8 ({ className, type, ...props }, ref) => {
9 return (
10 <input
11 type={type}
12 className={cn(
13 "border-input ring-offset-background placeholder:text-muted-foreground focus-visible:ring-ring flex h-10 w-full rounded-md border bg-transparent px-3 py-2 text-sm file:border-0 file:bg-transparent file:text-sm file:font-medium focus-visible:outline-hidden focus-visible:ring-2 focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",
14 className,
15 )}
16 ref={ref}
17 {...props}
18 />
19 );
20 },
21);
22Input.displayName = "Input";
23
24export { Input };