vdelacou/iblis-ui

View on GitHub
src/components/form_components/change_password_form/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 {
        icon: {
            padding: theme.spacing.unit / 2,
            marginTop: theme.spacing.unit,
        },
    };
};