mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-23 03:00:31 -04:00
26 lines
970 B
TypeScript
26 lines
970 B
TypeScript
import { ButtonGroup } from '@invoke-ai/ui-library';
|
|
import { ToolBboxButton } from 'features/controlLayers/components/Tool/ToolBboxButton';
|
|
import { ToolBrushButton } from 'features/controlLayers/components/Tool/ToolBrushButton';
|
|
import { ToolColorPickerButton } from 'features/controlLayers/components/Tool/ToolColorPickerButton';
|
|
import { ToolMoveButton } from 'features/controlLayers/components/Tool/ToolMoveButton';
|
|
import { ToolRectButton } from 'features/controlLayers/components/Tool/ToolRectButton';
|
|
|
|
import { ToolEraserButton } from './ToolEraserButton';
|
|
import { ToolViewButton } from './ToolViewButton';
|
|
|
|
export const ToolChooser: React.FC = () => {
|
|
return (
|
|
<>
|
|
<ButtonGroup isAttached orientation="vertical">
|
|
<ToolBrushButton />
|
|
<ToolEraserButton />
|
|
<ToolRectButton />
|
|
<ToolMoveButton />
|
|
<ToolViewButton />
|
|
<ToolBboxButton />
|
|
<ToolColorPickerButton />
|
|
</ButtonGroup>
|
|
</>
|
|
);
|
|
};
|