chore(lp): 📦️ Import existing Landing page
This commit is contained in:
12
apps/landing-page/components/Homepage/ListWithVerticalLines/Placeholder.tsx
Executable file
12
apps/landing-page/components/Homepage/ListWithVerticalLines/Placeholder.tsx
Executable file
@ -0,0 +1,12 @@
|
||||
import { Box, BoxProps, useColorModeValue } from '@chakra-ui/react'
|
||||
import * as React from 'react'
|
||||
|
||||
export const Placeholder = (props: BoxProps) => (
|
||||
<Box
|
||||
bg={useColorModeValue('gray.50', 'gray.700')}
|
||||
width="full"
|
||||
height="32"
|
||||
rounded="xl"
|
||||
{...props}
|
||||
/>
|
||||
)
|
Reference in New Issue
Block a user