13 lines
279 B
TypeScript
Executable File
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}
|
|
/>
|
|
)
|