feat: client tab in deal editor
This commit is contained in:
13
src/components/ui/FormFlexRow/FormFlexRow.tsx
Normal file
13
src/components/ui/FormFlexRow/FormFlexRow.tsx
Normal file
@ -0,0 +1,13 @@
|
||||
import { FC, PropsWithChildren } from "react";
|
||||
import { Flex } from "@mantine/core";
|
||||
|
||||
const FormFlexRow: FC<PropsWithChildren> = ({ children }) => (
|
||||
<Flex
|
||||
gap={"md"}
|
||||
w={"100%"}
|
||||
direction={{ base: "column", sm: "row" }}>
|
||||
{children}
|
||||
</Flex>
|
||||
);
|
||||
|
||||
export default FormFlexRow;
|
||||
Reference in New Issue
Block a user