13 lines
346 B
TypeScript
13 lines
346 B
TypeScript
|
|
import * as _chakra_ui_system from '@chakra-ui/system';
|
||
|
|
import { StackProps } from './stack.js';
|
||
|
|
import './stack.utils.js';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* A view that arranges its children in a vertical line.
|
||
|
|
*
|
||
|
|
* @see Docs https://chakra-ui.com/docs/components/stack
|
||
|
|
*/
|
||
|
|
declare const VStack: _chakra_ui_system.ComponentWithAs<"div", StackProps>;
|
||
|
|
|
||
|
|
export { VStack };
|