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.

12 lines
423 B

import PropTypes from 'prop-types';
export declare type ResponsiveUtilityValue<T> = T | {
xs?: T;
sm?: T;
md?: T;
lg?: T;
xl?: T;
xxl?: T;
};
export declare function responsivePropType(propType: any): PropTypes.Requireable<any>;
export default function createUtilityClassName(utilityValues: Record<string, ResponsiveUtilityValue<unknown>>, breakpoints?: string[], minBreakpoint?: string): string[];