mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
e05d924663
https://linear.app/unleash/issue/2-504/misc-frontend-related-fixes-mostly-related-with-favorites
53 lines
1.7 KiB
TypeScript
53 lines
1.7 KiB
TypeScript
import { VFC } from 'react';
|
|
import { IconButton, IconButtonProps } from '@mui/material';
|
|
import { ConditionallyRender } from '../ConditionallyRender/ConditionallyRender';
|
|
import {
|
|
Star as StarIcon,
|
|
StarBorder as StarBorderIcon,
|
|
} from '@mui/icons-material';
|
|
import { TooltipResolver } from '../TooltipResolver/TooltipResolver';
|
|
|
|
interface IFavoriteIconButtonProps extends IconButtonProps {
|
|
isFavorite: boolean;
|
|
size?: 'medium' | 'large';
|
|
}
|
|
|
|
export const FavoriteIconButton: VFC<IFavoriteIconButtonProps> = ({
|
|
isFavorite,
|
|
size = 'large',
|
|
...props
|
|
}) => {
|
|
return (
|
|
<TooltipResolver
|
|
title={isFavorite ? 'Remove from favorites' : 'Add to favorites'}
|
|
>
|
|
<IconButton size={size} data-loading {...props}>
|
|
<ConditionallyRender
|
|
condition={isFavorite}
|
|
show={
|
|
<StarIcon
|
|
color="primary"
|
|
sx={{
|
|
fontSize: theme =>
|
|
size === 'medium'
|
|
? theme.spacing(2)
|
|
: theme.spacing(3),
|
|
}}
|
|
/>
|
|
}
|
|
elseShow={
|
|
<StarBorderIcon
|
|
sx={{
|
|
fontSize: theme =>
|
|
size === 'medium'
|
|
? theme.spacing(2)
|
|
: theme.spacing(3),
|
|
}}
|
|
/>
|
|
}
|
|
/>
|
|
</IconButton>
|
|
</TooltipResolver>
|
|
);
|
|
};
|