aboutsummaryrefslogtreecommitdiff
path: root/src/components/Image/BackgroundImage.tsx
diff options
context:
space:
mode:
authorEugene Sokolov <eug-vs@keemail.me>2020-08-14 16:58:41 +0300
committerGitHub <noreply@github.com>2020-08-14 16:58:41 +0300
commit9073af9512687e724a5237d55a85656abb3305e5 (patch)
treed4a96f03365fac6f36b3826e2c18c24ee3db0974 /src/components/Image/BackgroundImage.tsx
parenta6d2d1d833116772178125b3e047e0811131c0e0 (diff)
parentd309f375af53dbb3415e2f892dc85e495ea0cf4c (diff)
downloadwhich-ui-9073af9512687e724a5237d55a85656abb3305e5.tar.gz
Merge pull request #82 from which-ecosystem/better-ux
Material images (loading, transitions, error)
Diffstat (limited to 'src/components/Image/BackgroundImage.tsx')
-rw-r--r--src/components/Image/BackgroundImage.tsx35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/components/Image/BackgroundImage.tsx b/src/components/Image/BackgroundImage.tsx
new file mode 100644
index 0000000..e749d10
--- /dev/null
+++ b/src/components/Image/BackgroundImage.tsx
@@ -0,0 +1,35 @@
+import React from 'react';
+import { makeStyles } from '@material-ui/core/styles';
+import Image from './Image';
+
+interface PropTypes {
+ src?: string;
+ alt?: string;
+}
+
+const useStyles = makeStyles({
+ root: {
+ position: 'absolute',
+ width: '100%',
+ height: '100%'
+ },
+ image: {
+ objectFit: 'cover',
+ pointerEvents: 'none',
+ width: '100%',
+ height: '100%'
+ }
+});
+
+const BackgroundImage: React.FC<PropTypes> = ({ src, alt }) => {
+ const classes = useStyles();
+
+ return (
+ <picture className={classes.root}>
+ <Image src={src} alt={alt} className={classes.image} />
+ </picture>
+ );
+};
+
+export default BackgroundImage;
+