Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import type { FC, PropsWithChildren } from 'react';
import React from 'react';
import { BottomToolbarDrawer } from './Drawer';
import { BottomToolbarMainBar } from './NodeTools';
import { ScaleButton } from './ScaleButton';
import type { BottomToolbarProps } from './types';
export * from './types';
export * from './Drawer';
export * from './NodeTools';
export * from './Tools';
export const BottomToolbar: FC<PropsWithChildren<BottomToolbarProps>> =
React.memo(
({
open = false,
className,
anchor = 'bottom',
pluginControls,
nodeId,
actionsLeft,
style,
children,
}) => {
const [scale, setScale] = React.useState(1);
return (
<BottomToolbarDrawer
className={className}
open={open}
anchor={anchor}
scale={scale}
style={style}
>
{children}
{pluginControls}
<BottomToolbarMainBar
nodeId={nodeId}
actionsLeft={[
<ScaleButton
key="scalebutton"
scale={scale}
setScale={setScale}
/>,
...React.Children.toArray(actionsLeft),
]}
/>
</BottomToolbarDrawer>
);
}
);