13 lines
205 B
JavaScript
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;
|