UNPKG

@jengaui/layout

Version:

Jenga UI Layout component in React

12 lines (9 loc) 410 B
import * as react from 'react'; import { CSSProperties } from 'react'; import { BaseProps, ContainerStyleProps } from 'tastycss'; interface JengaSuffixProps extends BaseProps, ContainerStyleProps { onWidthChange?: Function; outerGap?: CSSProperties['gap']; } declare const Suffix: react.ForwardRefExoticComponent<JengaSuffixProps & react.RefAttributes<unknown>>; export { JengaSuffixProps, Suffix };