@td-design/react-native
Version:
react-native UI组件库
7 lines • 304 B
TypeScript
import { FC, PropsWithChildren } from 'react';
import { BoxProps } from '@shopify/restyle';
import { Theme } from '../theme';
type FlexItemProps = PropsWithChildren<Omit<BoxProps<Theme>, 'width'>>;
declare const FlexItem: FC<FlexItemProps>;
export default FlexItem;
//# sourceMappingURL=FlexItem.d.ts.map