vdelacou/iblis-ui

View on GitHub
src/components/ui_components/account_card/style.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Theme } from '@material-ui/core';
import { CSSProperties } from 'react';

export const style = (theme: Theme): Record<string, Partial<CSSProperties>> => {
    return {
        bigAvatar: {
            width: theme.spacing.unit * 12,
            height: theme.spacing.unit * 12,
        },
        rightContainer: {
            height: '100%',
        },
    };
};