UNPKG

@taiga-ui/core

Version:

Core library for creating Angular components and applications using Taiga UI

9 lines (8 loc) 391 B
import { type TuiSizeXXL, type TuiSizeXXS } from '@taiga-ui/core/types'; /** * Compares size constants to determine if first size is bigger than the second * * @param size size that we need to compare * @param biggerThanSize size to compare with, 's' by default */ export declare function tuiSizeBigger(size: TuiSizeXXL | TuiSizeXXS, biggerThanSize?: TuiSizeXXL | TuiSizeXXS): boolean;