UNPKG

@itwin/itwinui-layouts-react

Version:

iTwinUI package that provides React components for most common layouts

18 lines (17 loc) 456 B
import React from 'react'; import { StylingProps } from '../../utils/props'; export declare type ToolsAreaProps = { /** * Tools displayed at the left side of toolbar */ left?: React.ReactNode; /** * Tools displayed at the right side of toolbar */ right?: React.ReactNode; } & StylingProps; export declare const ToolsArea: { (props: ToolsAreaProps): JSX.Element; displayName: string; }; export default ToolsArea;