mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
16 lines
309 B
TypeScript
16 lines
309 B
TypeScript
![]() |
import { Flex } from '@chakra-ui/react';
|
||
|
|
||
|
import { FlexProps } from '@chakra-ui/react';
|
||
|
|
||
|
export const FormRow = (props: FlexProps) => {
|
||
|
return (
|
||
|
<Flex
|
||
|
w="100%"
|
||
|
flexDir="row"
|
||
|
flexWrap="wrap"
|
||
|
justifyContent={{ base: 'center', lg: 'space-between' }}
|
||
|
{...props}
|
||
|
/>
|
||
|
);
|
||
|
};
|