You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
573 B
14 lines
573 B
import type { SizeType } from '../config-provider/SizeContext';
|
|
|
|
export function isPresetSize(size?: SizeType | string | number): size is SizeType {
|
|
return ['small', 'middle', 'large'].includes(size as string);
|
|
}
|
|
|
|
export function isValidGapNumber(size?: SizeType | string | number): size is number {
|
|
if (!size) {
|
|
// The case of size = 0 is deliberately excluded here, because the default value of the gap attribute in CSS is 0, so if the user passes 0 in, we can directly ignore it.
|
|
return false;
|
|
}
|
|
return typeof size === 'number' && !Number.isNaN(size);
|
|
}
|