rohan13's picture
Flowise Changes
4114d85
raw
history blame contribute delete
367 Bytes
import { styled } from '@mui/material/styles'
import { Fab } from '@mui/material'
export const StyledFab = styled(Fab)(({ theme, color = 'primary' }) => ({
color: 'white',
backgroundColor: theme.palette[color].main,
'&:hover': {
backgroundColor: theme.palette[color].main,
backgroundImage: `linear-gradient(rgb(0 0 0/10%) 0 0)`
}
}))