mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
23 lines
613 B
TypeScript
23 lines
613 B
TypeScript
import React, { useEffect } from "react";
|
|
import { TextInputProps, TextProps } from "react-native";
|
|
import { TextInput } from "react-native";
|
|
export function Input(props: TextInputProps) {
|
|
const { style, ...otherProps } = props;
|
|
const inputRef = React.useRef<TextInput>(null);
|
|
|
|
useEffect(() => {
|
|
inputRef.current?.focus();
|
|
}, []);
|
|
|
|
return (
|
|
<TextInput
|
|
ref={inputRef}
|
|
className="p-4 border border-neutral-800 rounded-xl bg-neutral-900"
|
|
allowFontScaling={false}
|
|
style={[{ color: "white" }, style]}
|
|
{...otherProps}
|
|
placeholderTextColor={"#9CA3AF"}
|
|
/>
|
|
);
|
|
}
|