aling
Version:
奇怪的组件库
11 lines (10 loc) • 481 B
TypeScript
import { SxProps } from "@mui/system";
import { FormItemProps } from "antd-mobile";
import React from "react";
import { Property } from "csstype";
export interface AFormItemProps extends FormItemProps {
sx?: SxProps;
flex?: [Property.JustifyContent, Property.AlignContent, Property.FlexDirection] | [Property.JustifyContent, Property.AlignContent];
}
declare const AFormItem: ({ sx, flex, children, ...otr }: AFormItemProps) => React.JSX.Element;
export default AFormItem;