Files
wdi-dashboard/node_modules/@chakra-ui/layout/dist/spacer.d.mts
2024-08-16 15:06:52 +05:30

15 lines
495 B
TypeScript

import * as _chakra_ui_system from '@chakra-ui/system';
import { HTMLChakraProps } from '@chakra-ui/system';
interface SpacerProps extends HTMLChakraProps<"div"> {
}
/**
* A flexible flex spacer that expands along the major axis of its containing flex layout.
* It renders a `div` by default, and takes up any available space.
*
* @see Docs https://chakra-ui.com/flex#using-the-spacer
*/
declare const Spacer: _chakra_ui_system.ChakraComponent<"div", {}>;
export { Spacer, SpacerProps };