first commit
Some checks failed
huaian-screen / build (push) Has been cancelled

This commit is contained in:
wangbin
2025-10-27 23:54:39 +08:00
parent 6e05e87474
commit d2bd0a60a4
209 changed files with 82726 additions and 0 deletions

21
src/components/Flex/index.d.ts vendored Normal file
View File

@ -0,0 +1,21 @@
import * as React from 'react';
import type {CSSProperties} from 'react'
export interface IFlexProps {
direction?: 'row' | 'column' | 'row-reverse' | 'column-reverse';
wrap?: 'nowrap' | 'wrap' | 'wrap-reverse';
justify?: 'flex-start' | 'flex-end' | 'center' | 'space-between' | 'space-around';
alignItems?: 'flex-start' | 'flex-end' | 'center' | 'stretch';
itemSelf?: 'auto' | 'flex-start' | 'flex-end' | 'center' | 'stretch';
itemOrder?: number;
itemGrow?: number;
style?: CSSProperties;
className?: string;
onClick?: any,
}
export default class Flex extends React.Component<IFlexProps, any> {
}