export type TextInputProps = { placeholder?: string | undefined } TextInput.__type = 'text-input' export function TextInput({ placeholder }: TextInputProps) { return }