Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 3667 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
3719 stevensc 1
import React from 'react';
2
import { Box } from '@mui/material';
3
 
4
export const FiltersRow = ({ children }) => {
5
  return (
6
    <Box
7
      sx={{
8
        display: 'flex',
9
        gap: 0.5,
10
        flexWrap: 'wrap',
11
        justifyContent: { xs: 'center', sm: 'flex-end' },
12
        '& > *:not(button)': {
13
          width: { xs: '100%', md: '200px' }
14
        }
15
      }}
16
    >
17
      {children}
18
    </Box>
19
  );
20
};