@cnamts/vue-dot
Version:
Implementation of our Design System for the French Health Insurance
35 lines (31 loc) • 642 B
text/typescript
import { IndexedObject } from '../../types';
import { Dimensions } from '../../types';
import { LogoSizeEnum } from './LogoSizeEnum';
export const logoDimensionsMapping: IndexedObject<Dimensions> = {
[]: {
width: '103',
height: '32'
},
[]: {
width: '131',
height: '40'
},
[]: {
width: '211',
height: '64'
}
};
export const logoAvatarDimensionsMapping: IndexedObject<Dimensions> = {
[]: {
width: '32',
height: '32'
},
[]: {
width: '40',
height: '40'
},
[]: {
width: '64',
height: '64'
}
};