/**
 * Breakpoint keys.
 *
 * Used in responsive spacing and grid settings, and calculating breakpoint boundaries
 */
export type FudisBreakpointKey = 'default' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
