1 import clsx from '@proton/utils/clsx';
3 export const getCustomSizingClasses = (style?: any): string => {
8 style['--h-custom'] !== undefined && 'h-custom',
9 style['--w-custom'] !== undefined && 'w-custom',
10 style['--top-custom'] !== undefined && 'top-custom',
11 style['--right-custom'] !== undefined && 'right-custom',
12 style['--left-custom'] !== undefined && 'left-custom',
13 style['--bottom-custom'] !== undefined && 'bottom-custom',