fictoan-react
Version:
A full-featured, designer-friendly, yet performant framework with plain-English props and focus on rapid iteration.
17 lines (16 loc) • 746 B
TypeScript
import React from "react";
import { CommonAndHTMLProps, SpacingTypes } from '../Element/constants';
interface RowCustomProps {
layout?: "grid" | "flexbox";
gutters?: SpacingTypes;
retainLayoutOnTabletLandscape?: boolean;
retainLayoutOnTabletPortrait?: boolean;
retainLayoutOnMobile?: boolean;
retainLayoutAlways?: boolean;
groupLabel?: string;
}
export type RowElementType = HTMLDivElement;
export type RowProps = Omit<CommonAndHTMLProps<RowElementType>, keyof RowCustomProps> & RowCustomProps;
export declare const Row: React.ForwardRefExoticComponent<Omit<CommonAndHTMLProps<HTMLDivElement>, keyof RowCustomProps> & RowCustomProps & React.RefAttributes<HTMLDivElement>>;
export {};
//# sourceMappingURL=Row.d.ts.map