I see
export type MantineSpacingValues = Record<MantineSize | (string & {}), string>;
export type MantineSpacing = keyof MantineSpacingValues | (string & {}) | number;
With MantineSize
export type MantineSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
I guess we can't extend MantineSizes to support these new sizes right?
What's the recommentdation for this?