mirror of
https://github.com/Jellify-Music/App.git
synced 2026-04-28 22:49:39 -05:00
15 lines
346 B
TypeScript
15 lines
346 B
TypeScript
import React from 'react';
|
|
import { Input as TamaguiInput, InputProps as TamaguiInputProps} from 'tamagui';
|
|
|
|
interface InputProps extends TamaguiInputProps {
|
|
}
|
|
|
|
export default function Input(props: InputProps): React.JSX.Element {
|
|
|
|
return (
|
|
<TamaguiInput
|
|
{...props}
|
|
clearButtonMode="always"
|
|
/>
|
|
)
|
|
} |