mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-04-18 13:58:27 +00:00
15 lines
309 B
TypeScript
15 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}
|
|
/>
|
|
);
|
|
};
|