UNPKG

@wq/material-web

Version:

Web bindings for @wq/material

11 lines (9 loc) 285 B
import React from "react"; import Input from "./Input.js"; export default function DateTime({ InputLabelProps: overrides, ...rest }) { const InputLabelProps = { shrink: true, ...overrides, }; return <Input InputLabelProps={InputLabelProps} {...rest} />; }