mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 11:00:55 +03:00
0f09faa1bc
- Removed Yarn dependency and replaced with PNPM - Changed Frontend to render via vite
12 lines
367 B
React
12 lines
367 B
React
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)`
|
|
}
|
|
}))
|