vdelacou/iblis-ui

View on GitHub
src/components/form_components/delete_account_form/style.ts

Summary

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

export const style = (theme: Theme): Record<string, Partial<CSSProperties>> => {
    return {
        containerEmailForm: {
            paddingTop: theme.spacing.unit * 4,
        },
    };
};