// shadcn-style Textarea — multi-line sibling of . Used by the
// data viewer's JSON cell editor (pass `className="font-mono"` for code).
import type { TextareaHTMLAttributes, ReactNode } from 'react'
import { cn } from '../cn'
export const Textarea = ({ className, ...props }: TextareaHTMLAttributes): ReactNode => (
)