@nish1896/rhf-mui-components
Version:
A suite of 20+ production-ready react-hook-form components built with material-ui. Fully typed, tree-shakable, and optimized for enterprise-grade forms.
16 lines (15 loc) • 356 B
JavaScript
import { styled } from "@mui/material/styles";
//#region src/mui/file-uploader/components/HiddenInput.tsx
const HiddenInput = styled("input")({
clip: "rect(0 0 0 0)",
clipPath: "inset(50%)",
height: 1,
overflow: "hidden",
position: "absolute",
bottom: 0,
left: 0,
whiteSpace: "nowrap",
width: 1
});
//#endregion
export { HiddenInput as default };