All Downloads are FREE. Search and download functionalities are using the official Maven repository.

components.process.ProcessGroup.js Maven / Gradle / Ivy

import { Box, Grid, Typography } from '@mui/material';
import _                                from 'lodash'
import ProcessGridItems           from 'components/process/ProcessGridItems';
import Elevate from 'components/common/Elevate';

const sx = {
  processGroupContainer : {
    paddingTop: '16px',
  },
  processGroup : {
    backgroundColor: theme => theme.palette.background.default,
    padding: '20px',
    position: 'relative'
  },
  processGroupLabel: {
    position: 'absolute',
    marginTop: "-31px", 
    marginLeft: 0,
    borderStyle: "solid",
    borderRadius: "15px",
    borderWidth: "1px",
    borderColor: theme => theme.palette.grey[300],
    backgroundColor: 'white', 
    color: theme => theme.palette.grey[600],
    padding: 0,
    paddingLeft: "8px",
    paddingRight: "8px",
    backgroundColor: theme => theme.palette.contrast
  }
}

const ProcessGroup = ({processDefinitions, category}) => {
  return (
    
      
        
          {category}
        
        
          
        
      
    
  )
}

export default ProcessGroup




© 2015 - 2024 Weber Informatics LLC | Privacy Policy