Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
k70suK3-k06a7ash1 committed Feb 24, 2025
1 parent 61a83ed commit 734c1ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/atoms/icon/BottomAddSectionIcon/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { PlusCircle } from "lucide-react";
import { Spacer } from "../../Spacer";
import { TabItem } from "../../../../styles/tabItem";
import { useAddSection } from "@/hooks/useAddSection";
import { Button } from "@/components/ui/button";

export const BottomAddSection = () => {
const { handleAddSection } = useAddSection();
Expand All @@ -19,7 +20,7 @@ export const BottomAddSection = () => {
</i>
<Spacer horizontal size={4} />
<div>Add Section</div>
<button onClick={handleAddSection} type="button" />
<Button onClick={handleAddSection} type="button" />
</label>
</TabItem>
</div>
Expand Down

0 comments on commit 734c1ae

Please sign in to comment.