13 lines
229 B
TypeScript
13 lines
229 B
TypeScript
import type { IconSize } from './types';
|
|
|
|
export const ICON_PIXEL_SIZES: Record<IconSize, number | undefined> = {
|
|
'50': 10,
|
|
'100': 12,
|
|
'200': 16,
|
|
'300': 20,
|
|
'400': 24,
|
|
'500': 28,
|
|
'600': 32,
|
|
Inherit: undefined,
|
|
};
|