import React from 'react'; import { Input, type InputProps } from '../Input'; export type TextInputProps = Omit; /** * A text field is an input that allows a user to write or edit text. * @see https://grapes.spendesk.design/docs/components/text-input */ export const TextInput = ({ className, fit = 'content', textAlign = 'left', variant = 'default', ref, ...rest }: TextInputProps) => { return ( ); };