saleor-dashboard/src/components/Skeleton.tsx
Dominik Żegleń 416d7d87f6
Improve theming (#1020)
* Remove unused code

* Move theme to separate directory

* Separate types

* Separate shadows

* Separate shadows

* Rename types

* Modularize code

* Do not pollute prototypes

* Fix missing import

* Aliast mui styles

* Import theming internally

* Fix types

* Fix override type
2021-03-30 09:40:18 +02:00

56 lines
1.1 KiB
TypeScript

import { makeStyles } from "@saleor/theme";
import classNames from "classnames";
import React from "react";
const useStyles = makeStyles(
theme => ({
"@keyframes skeleton-animation": {
"0%": {
opacity: 0.6
},
"100%": {
opacity: 1
}
},
primary: {
"&$skeleton": {
background: theme.palette.primary.main
}
},
skeleton: {
animation: "skeleton-animation .75s linear infinite forwards alternate",
background: theme.palette.background.default,
borderRadius: 4,
display: "block",
height: "0.8em",
margin: "0.2em 0"
}
}),
{ name: "Skeleton" }
);
interface SkeletonProps {
className?: string;
primary?: boolean;
style?: React.CSSProperties;
}
const Skeleton: React.FC<SkeletonProps> = props => {
const { className, primary, style } = props;
const classes = useStyles(props);
return (
<span
className={classNames(classes.skeleton, className, {
[classes.primary]: primary
})}
style={style}
>
&zwnj;
</span>
);
};
Skeleton.displayName = "Skeleton";
export default Skeleton;