UNPKG

react-box-tools

Version:

Box tools react components, utils and hooks

20 lines (14 loc) 464 B
import { JSX } from 'react'; import { JSX as JSX_2 } from 'react/jsx-runtime'; import { ReactNode } from 'react'; declare interface ComponentTag { tag?: keyof JSX.IntrinsicElements; } export declare const Group: (props: GroupProps) => JSX_2.Element; declare type GroupDirection = 'h' | 'v'; export declare type GroupProps = { direction?: GroupDirection; className?: string; children: ReactNode; } & ComponentTag; export { }