aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/components/Image/Image.tsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/components/Image/Image.tsx b/src/components/Image/Image.tsx
index 1898716..716736f 100644
--- a/src/components/Image/Image.tsx
+++ b/src/components/Image/Image.tsx
@@ -15,6 +15,9 @@ interface PropTypes {
type Status = 'success' | 'loading' | 'error';
const useStyles = makeStyles(theme => ({
+ image: {
+ imageOrientation: 'from-image'
+ },
container: {
width: '100%',
height: '100%',
@@ -71,7 +74,7 @@ const Image: React.FC<PropTypes> = React.memo(({
<img
src={src}
alt={alt}
- className={`${className} ${classes[status]}`}
+ className={`${classes.image} ${classes[status]} ${className}`}
style={{ transition }}
onLoad={handleLoad}
onError={handleError}