import { JsonInput as MantineJsonInput, JsonInputProps as MantineJsonInputProps, } from '@mantine/core'; import { CSSProperties, forwardRef } from 'react'; import styles from './json-input.module.css'; export interface JsonInputProps extends MantineJsonInputProps { maxWidth?: CSSProperties['maxWidth']; width?: CSSProperties['width']; } export const JsonInput = forwardRef( ( { children, classNames, maxWidth, size = 'sm', style, variant = 'default', width, ...props }, ref, ) => { return ( {children} ); }, );