2
0
Files
bot/apps/landing-page/components/Homepage/ListWithVerticalLines/Placeholder.tsx

13 lines
279 B
TypeScript
Raw Normal View History

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}
/>
)