Proyectos de Subversion LeadersLinked - SPA

Rev

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

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

export const FiltersRow = ({ children }) => {
  return (
    <Box
      sx={{
        display: 'flex',
        gap: 0.5,
        flexWrap: 'wrap',
        justifyContent: { xs: 'center', sm: 'flex-end' },
        '& > *:not(button)': {
          width: { xs: '100%', md: '200px' }
        }
      }}
    >
      {children}
    </Box>
  );
};