@fluentui/react
Version:
Reusable React components for building web experiences.
10 lines (9 loc) • 345 B
TypeScript
/** @jsxRuntime classic */
/** @jsx withSlots */
import * as React from 'react';
import type { IStackProps } from './Stack.types';
import type { IStackItemProps } from './StackItem/StackItem.types';
export declare const Stack: React.FunctionComponent<IStackProps> & {
Item: React.FunctionComponent<IStackItemProps>;
};
export default Stack;