-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
77 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import { Skeleton, SvgIconProps } from '@mui/material'; | ||
import { alpha, useTheme } from '@mui/material/styles'; | ||
import { forwardRef } from 'react'; | ||
|
||
/** | ||
* Add skeleton effect to SVG icons. | ||
* @example | ||
* <SvgIcon component={SvgSkeleton} /> | ||
*/ | ||
export const SvgSkeleton = forwardRef<SVGSVGElement, SvgIconProps>( | ||
function SvgSkeleton(props, ref) { | ||
const theme = useTheme(); | ||
return ( | ||
<Skeleton | ||
component="svg" | ||
variant="circular" | ||
{...props} | ||
ref={ref} | ||
sx={{ | ||
borderRadius: 'initial', | ||
// Move background color to foreground color | ||
backgroundColor: 'transparent', | ||
color: alpha( | ||
theme.palette.text.primary, | ||
theme.palette.mode === 'light' ? 0.11 : 0.13 | ||
), | ||
'&>*': { visibility: 'initial' }, | ||
}} | ||
/> | ||
); | ||
} | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.