@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
10 lines (9 loc) • 387 B
TypeScript
import type { StackCssVariables, StackFactory, StackProps, StackStylesNames } from './Stack';
export { Stack } from './Stack';
export type { StackProps, StackStylesNames, StackCssVariables, StackFactory };
export declare namespace Stack {
type Props = StackProps;
type StylesNames = StackStylesNames;
type CssVariables = StackCssVariables;
type Factory = StackFactory;
}