Add authentication
This commit is contained in:
25
apps/builder/components/auth/DividerWithText.tsx
Normal file
25
apps/builder/components/auth/DividerWithText.tsx
Normal file
@ -0,0 +1,25 @@
|
||||
import { FlexProps, Flex, Box, Divider, Text } from '@chakra-ui/react'
|
||||
import { useColorModeValue } from '@chakra-ui/system'
|
||||
import React from 'react'
|
||||
|
||||
export const DividerWithText = (props: FlexProps) => {
|
||||
const { children, ...flexProps } = props
|
||||
return (
|
||||
<Flex align="center" color="gray.300" {...flexProps}>
|
||||
<Box flex="1">
|
||||
<Divider borderColor="currentcolor" />
|
||||
</Box>
|
||||
<Text
|
||||
as="span"
|
||||
px="3"
|
||||
color={useColorModeValue('gray.600', 'gray.400')}
|
||||
fontWeight="medium"
|
||||
>
|
||||
{children}
|
||||
</Text>
|
||||
<Box flex="1">
|
||||
<Divider borderColor="currentcolor" />
|
||||
</Box>
|
||||
</Flex>
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user