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

13 lines
205 B
JavaScript

const style = theme => {
return {
profilePicture: {
margin: "auto",
display: "block",
width: theme.spacing(25),
height: theme.spacing(25)
}
};
};
export default style;