14 lines
311 B
TypeScript
14 lines
311 B
TypeScript
import type { IconSize } from './types';
|
|
|
|
/** App chrome icons; ~4% above the original folds scale after +30% then -20%. */
|
|
export const ICON_PIXEL_SIZES: Record<IconSize, number | undefined> = {
|
|
'50': 10,
|
|
'100': 13,
|
|
'200': 17,
|
|
'300': 21,
|
|
'400': 25,
|
|
'500': 29,
|
|
'600': 34,
|
|
Inherit: undefined,
|
|
};
|