network-resurrector-frontend/src/features/user/profile/styles.js

13 lines
205 B
JavaScript
Raw Normal View History

2023-03-20 18:49:35 +02:00
const style = theme => {
return {
profilePicture: {
margin: "auto",
display: "block",
width: theme.spacing(25),
height: theme.spacing(25)
}
};
};
export default style;