Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 3622 | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |

import React from 'react';
import { styled } from '@mui/material';

const VisuallyHiddenInput = 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
});

export const HiddenInput = ({ ...props }) => {
  return <VisuallyHiddenInput {...props} />;
};