13 lines
348 B
TypeScript
13 lines
348 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 horizontal line.
|
|
*
|
|
* @see Docs https://chakra-ui.com/docs/components/stack
|
|
*/
|
|
declare const HStack: _chakra_ui_system.ComponentWithAs<"div", StackProps>;
|
|
|
|
export { HStack };
|