From e558e744dbc675a0c9256b42f183dc2b0c33fc5e Mon Sep 17 00:00:00 2001 From: luis Date: Sat, 11 Feb 2023 16:39:52 -0500 Subject: [PATCH] style fix --- src/shared/Dropdown.tsx | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/src/shared/Dropdown.tsx b/src/shared/Dropdown.tsx index c8b5414..3fdcb63 100644 --- a/src/shared/Dropdown.tsx +++ b/src/shared/Dropdown.tsx @@ -1,15 +1,21 @@ import { Component, JSX, Show, createSignal } from "solid-js"; +import { ChevronDown } from "lucide-solid"; import Button from "./Button"; -import { ChevronDown } from "lucide-solid"; -const Dropdown: Component<{ children: JSX.Element, label: string }> = (props) => { +const Dropdown: Component<{ children: JSX.Element; label: string }> = ( + props +) => { const [open, setOpen] = createSignal(false); - return( + return (
- @@ -18,4 +24,4 @@ const Dropdown: Component<{ children: JSX.Element, label: string }> = (props) => ); }; -export default Dropdown; \ No newline at end of file +export default Dropdown;