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