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

16 lines 626 B
import React from 'react'; interface ToolsProps { children: React.ReactNode; } /** * The Tools component consists of the following elements: * the container, or root element, that sits as a direct child to the Layout grid definition; * the split panel, which exists only if there is a split panel in side position; * the tools, or drawer, that contains the hide tools form and the children passed through the API; * the show tools form that contains the triggers for both the drawer and the * split panel in large viewports; */ export default function Tools({ children }: ToolsProps): JSX.Element | null; export {};