Files
InvokeAI/invokeai/frontend/web/src/features/controlLayers/components/Tool/ToolChooser.tsx
psychedelicious db283d21f9 chore(ui): lint
2024-10-02 08:02:30 -04:00

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>
</>
);
};