UNPKG

@yosgo/swap-ui

Version:
8 lines (7 loc) 291 B
/// <reference types="react" /> import { TextFieldProps } from "@material-ui/core"; export interface MyTextFieldProps extends Pick<TextFieldProps, Exclude<keyof TextFieldProps, "variant">> { children?: React.ReactNode; width?: number | string; height?: number | string; }