Files
Flowise/packages/ui/src/ui-component/button/StyledFab.jsx
T
Greg L 0f09faa1bc - Updated .js files to .jsx on frontend.
- Removed Yarn dependency and replaced with PNPM
- Changed Frontend to render via vite
2023-11-23 08:17:06 -05:00

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)`
}
}))