27 lines
658 B
TypeScript
27 lines
658 B
TypeScript
import React from "react";
|
|
|
|
import StyleInput from "@/components/StyleInput";
|
|
import SearchInput from "@/components/SearchInput";
|
|
import SizeInput from "@/components/SizeInput";
|
|
import ColorInput from "@/components/ColorInput";
|
|
import SettingsActions from "@/components/SettingsActions";
|
|
import "./Toolbar.css";
|
|
|
|
type ToolbarProps = {};
|
|
|
|
const Toolbar: React.FC<ToolbarProps> = () => {
|
|
return (
|
|
<nav className="toolbar" id="toolbar">
|
|
<div className="toolbar-contents">
|
|
<StyleInput />
|
|
<SearchInput />
|
|
<SizeInput />
|
|
<ColorInput />
|
|
<SettingsActions />
|
|
</div>
|
|
</nav>
|
|
);
|
|
};
|
|
|
|
export default Toolbar;
|