Skip to content

Commit

Permalink
Add another missing icon size parameter.
Browse files Browse the repository at this point in the history
  • Loading branch information
salamca committed Nov 1, 2023
1 parent b7d9999 commit 7ea4c79
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/app/sandbox/select/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"use client";
import { IconSize } from "@/components/ui/icons/icon-size";
import Button from "../../../components/ui/button";
import IconAid from "../../../components/ui/icons/aid";
import IconColumns from "../../../components/ui/icons/columns";
Expand Down Expand Up @@ -107,7 +108,11 @@ function SelectPage() {
<Option id="2" value="hrenovka" disabled>
Hrenovka
</Option>
<Option id="3" value="pecenica" icon={<IconStarFull />}>
<Option
id="3"
value="pecenica"
icon={<IconStarFull size={IconSize.small} />}
>
Pečenica
</Option>
<Option id="4" value="krvavica">
Expand Down

0 comments on commit 7ea4c79

Please sign in to comment.