@hello-pangea/dnd
Version:
Beautiful and accessible drag and drop for lists with React
16 lines (14 loc) • 364 B
text/typescript
// https://allyjs.io/tutorials/hiding-elements.html
// Element is visually hidden but is readable by screen readers
const visuallyHidden: any = {
position: 'absolute',
width: '1px',
height: '1px',
margin: '-1px',
border: '0',
padding: '0',
overflow: 'hidden',
clip: 'rect(0 0 0 0)',
'clip-path': 'inset(100%)',
};
export default visuallyHidden;