mirror of
https://github.com/r2r90/canvas-label.git
synced 2026-01-31 21:22:23 +00:00
text toolbar - delete text button added
This commit is contained in:
15
src/components/layout/sidebar/sidebar.tsx
Normal file
15
src/components/layout/sidebar/sidebar.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import { TextInput } from "@/components/layout/sidebar/text-input";
|
||||
import ImageInput from "@/components/layout/sidebar/image-input";
|
||||
import { SelectTemplate } from "@/components/layout/sidebar/select-template";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { useAppDispatch } from "@/hooks";
|
||||
|
||||
export function Sidebar() {
|
||||
return (
|
||||
<div className="flex h-full w-20 flex-col gap-2 p-2">
|
||||
<TextInput />
|
||||
<ImageInput />
|
||||
<SelectTemplate />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user