@kwiz/fluentui
Version:
KWIZ common controls for FluentUI
13 lines (12 loc) • 383 B
TypeScript
import React from 'react';
import { ISectionProps } from './section';
interface IProps extends ISectionProps {
wrap?: boolean;
nogap?: boolean;
/** vertical centered */
vCentered?: boolean;
}
export declare const Vertical: (props: IProps & {
children?: React.ReactNode | undefined;
} & React.RefAttributes<HTMLDivElement>) => React.JSX.Element | null;
export {};