@gechiui/components
Version:
UI components for GeChiUI.
27 lines • 684 B
TypeScript
/**
* External dependencies
*/
import type { CSSProperties } from 'react';
/**
* Internal dependencies
*/
import type { FlexProps } from '../../flex/types';
export declare type ControlGroupContext = {
isFirst?: boolean;
isLast?: boolean;
isMiddle?: boolean;
isOnly?: boolean;
isVertical?: boolean;
styles?: string;
};
export declare type Props = Pick<FlexProps, 'direction'> & {
/**
* Adjust the layout (width) of content using CSS grid (`grid-template-columns`).
*/
templateColumns?: CSSProperties['gridTemplateColumns'];
/**
* The children elements.
*/
children: React.ReactNode;
};
//# sourceMappingURL=types.d.ts.map