2
0
Files
bot/apps/landing-page/components/Homepage/ListWithVerticalLines/Placeholder.tsx
2022-02-09 18:52:36 +01:00

13 lines
279 B
TypeScript
Executable File

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