UNPKG

@wq/material-web

Version:

Web bindings for @wq/material

13 lines (12 loc) 339 B
import React from "react"; import Input from "./Input.js"; export default function DateTime({ InputLabelProps: overrides, ...rest }) { const InputLabelProps = { shrink: true, ...overrides, }; return /*#__PURE__*/ React.createElement(Input, { InputLabelProps: InputLabelProps, ...rest, }); }