UNPKG

@awsui/components-react

Version:

On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en

29 lines 637 B
interface ResizerProps { onWidthUpdate: (newWidth: number) => void; onWidthUpdateCommit: () => void; ariaLabelledby?: string; minWidth?: number; tabIndex?: number; focusId?: string; showFocusRing?: boolean; roleDescription?: string; tooltipText?: string; } export declare function Divider({ className }: { className?: string; }): JSX.Element; export declare function Resizer({ onWidthUpdate, onWidthUpdateCommit, ariaLabelledby, minWidth, tabIndex, showFocusRing, focusId, roleDescription, tooltipText }: ResizerProps): JSX.Element; export declare function ResizeTracker(): JSX.Element; export {};