import { isMobile } from '@/utils/isMobileSignal' import { splitProps } from 'solid-js' import { JSX } from 'solid-js/jsx-runtime' type TextareaProps = { ref: HTMLTextAreaElement | undefined onInput: (value: string) => void } & Omit, 'onInput'> export const Textarea = (props: TextareaProps) => { const [local, others] = splitProps(props, ['ref', 'onInput']) return (