utils.d.ts 603 B

123456
  1. import type { FlexProps } from './interface';
  2. export declare const flexWrapValues: readonly ["wrap", "nowrap", "wrap-reverse"];
  3. export declare const justifyContentValues: readonly ["flex-start", "flex-end", "start", "end", "center", "space-between", "space-around", "space-evenly", "stretch", "normal", "left", "right"];
  4. export declare const alignItemsValues: readonly ["center", "start", "end", "flex-start", "flex-end", "self-start", "self-end", "baseline", "normal", "stretch"];
  5. declare function createFlexClassNames(prefixCls: string, props: FlexProps): string;
  6. export default createFlexClassNames;